Add PR number
[official-gcc.git] / fixincludes / tests / base / stdlib.h
blob99092dedd24c526acac672b8cc0176d279f33fc2
1 /* DO NOT EDIT THIS FILE.
3 It has been auto-edited by fixincludes from:
5 "fixinc/tests/inc/stdlib.h"
7 This had to be done to correct non-standard usages in the
8 original, manufacturer supplied header file. */
12 #if defined( AIX_STDLIB_MALLOC_CHECK )
13 extern void *malloc(size_t) __asm__("__linux_malloc");
14 #endif /* AIX_STDLIB_MALLOC_CHECK */
17 #if defined( AIX_STDLIB_REALLOC_CHECK )
18 extern void *realloc(void *, size_t) __asm__("__linux_realloc");
19 #endif /* AIX_STDLIB_REALLOC_CHECK */
22 #if defined( AIX_STDLIB_CALLOC_CHECK )
23 extern void *calloc(size_t, size_t) __asm__("__linux_calloc");
24 #endif /* AIX_STDLIB_CALLOC_CHECK */
27 #if defined( AIX_STDLIB_VALLOC_CHECK )
28 extern void *valloc(size_t) __asm__("__linux_valloc");
29 #endif /* AIX_STDLIB_VALLOC_CHECK */
32 #if defined( AIX_STDLIB_VEC_MALLOC_CHECK )
33 extern void *malloc(size_t) __asm__("vec_malloc");
34 #endif /* AIX_STDLIB_VEC_MALLOC_CHECK */
37 #if defined( AIX_STDLIB_VEC_CALLOC_CHECK )
38 extern void *calloc(size_t, size_t) __asm__("vec_calloc");
39 #endif /* AIX_STDLIB_VEC_CALLOC_CHECK */
42 #if defined( AIX_STRTOF_CONST_CHECK )
43 extern float strtof(const char *, char **);
44 #endif /* AIX_STRTOF_CONST_CHECK */
47 #if defined( HPUX11_ABS_CHECK )
48 #if !defined(_MATH_INCLUDED) || defined(__GNUG__)
49 #endif /* HPUX11_ABS_CHECK */
52 #if defined( HPUX_LONG_DOUBLE_CHECK )
53 extern long double strtold(const char *, char **);
55 #endif /* HPUX_LONG_DOUBLE_CHECK */
58 #if defined( HPUX_LONG_DOUBLE_2_CHECK )
59 # if !defined(__ia64) || !defined(_PROTOTYPES) || defined(_LONG_DOUBLE_STRUCT)
61 #endif /* HPUX_LONG_DOUBLE_2_CHECK */
64 #if defined( INT_ABORT_FREE_AND_EXIT_CHECK )
65 extern void abort(int);
66 extern void free(void*);
67 extern void exit(void*);
68 #endif /* INT_ABORT_FREE_AND_EXIT_CHECK */
71 #if defined( LYNXOS_MISSING_PUTENV_CHECK )
72 extern char *getenv _AP((const char *));
73 extern int putenv _AP((char *));
74 #endif /* LYNXOS_MISSING_PUTENV_CHECK */
77 #if defined( SVR4_GETCWD_CHECK )
78 extern char* getcwd(char *, size_t);
79 #endif /* SVR4_GETCWD_CHECK */
82 #if defined( SVR4_PROFIL_CHECK )
83 profil(unsigned short *, size_t, int, unsigned int);
84 #endif /* SVR4_PROFIL_CHECK */
87 #if defined( SYSZ_STDLIB_FOR_SUN_CHECK )
88 extern void * calloc(size_t);
89 extern void * malloc(size_t);
90 extern void * realloc(void*,size_t);
91 extern void * bsearch(void*,size_t,size_t);
93 #endif /* SYSZ_STDLIB_FOR_SUN_CHECK */