source: rtems/c/src/lib/libc/libcsupport.h @ 8548fe0

4.104.114.84.95
Last change on this file since 8548fe0 was 60b791ad, checked in by Joel Sherrill <joel.sherrill@…>, on 02/17/98 at 23:46:28

updated copyright to 1998

  • Property mode set to 100644
File size: 923 bytes
Line 
1/*  libcsupport.h
2 *
3 *  This include file contains the information regarding the
4 *  RTEMS specific support for the standard C library.
5 *
6 *  COPYRIGHT (c) 1989-1998.
7 *  On-Line Applications Research Corporation (OAR).
8 *  Copyright assigned to U.S. Government, 1994.
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.OARcorp.com/rtems/license.html.
13 *
14 *  $Id$
15 */
16
17#ifndef __LIBC_SUPPORT_h
18#define __LIBC_SUPPORT_h
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
24#include <sys/types.h>
25
26void RTEMS_Malloc_Initialize(
27  void   *start,
28  size_t  length,
29  size_t  sbrk_amount
30);
31
32extern void malloc_dump(void);
33extern void malloc_walk(size_t source, size_t printf_enabled);
34extern void libc_init(int reentrant);
35extern int  host_errno(void);
36extern void fix_syscall_errno(void);
37
38#ifdef __cplusplus
39}
40#endif
41
42#endif
43/* end of include file */
Note: See TracBrowser for help on using the repository browser.