(root)/
gcc-13.2.0/
fixincludes/
tests/
base/
stdlib.h
       1  /*  DO NOT EDIT THIS FILE.
       2  
       3      It has been auto-edited by fixincludes from:
       4  
       5  	"fixinc/tests/inc/stdlib.h"
       6  
       7      This had to be done to correct non-standard usages in the
       8      original, manufacturer supplied header file.  */
       9  
      10  
      11  
      12  #if defined( AIX_STDLIB_MALLOC_CHECK )
      13  extern void *malloc(size_t) __asm__("__linux_malloc");
      14  #endif  /* AIX_STDLIB_MALLOC_CHECK */
      15  
      16  
      17  #if defined( AIX_STDLIB_REALLOC_CHECK )
      18  extern void *realloc(void *, size_t) __asm__("__linux_realloc");
      19  #endif  /* AIX_STDLIB_REALLOC_CHECK */
      20  
      21  
      22  #if defined( AIX_STDLIB_CALLOC_CHECK )
      23  extern void *calloc(size_t, size_t) __asm__("__linux_calloc");
      24  #endif  /* AIX_STDLIB_CALLOC_CHECK */
      25  
      26  
      27  #if defined( AIX_STDLIB_VALLOC_CHECK )
      28  extern void *valloc(size_t) __asm__("__linux_valloc");
      29  #endif  /* AIX_STDLIB_VALLOC_CHECK */
      30  
      31  
      32  #if defined( AIX_STDLIB_VEC_MALLOC_CHECK )
      33  extern void *malloc(size_t) __asm__("vec_malloc");
      34  #endif  /* AIX_STDLIB_VEC_MALLOC_CHECK */
      35  
      36  
      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 */
      40  
      41  
      42  #if defined( AIX_STRTOF_CONST_CHECK )
      43  extern float    strtof(const char *, char **);
      44  #endif  /* AIX_STRTOF_CONST_CHECK */
      45  
      46  
      47  #if defined( HPUX11_ABS_CHECK )
      48  #if !defined(_MATH_INCLUDED) || defined(__GNUG__)
      49  #endif  /* HPUX11_ABS_CHECK */
      50  
      51  
      52  #if defined( HPUX_LONG_DOUBLE_CHECK )
      53  extern long double strtold(const char *, char **);
      54  
      55  #endif  /* HPUX_LONG_DOUBLE_CHECK */
      56  
      57  
      58  #if defined( HPUX_LONG_DOUBLE_2_CHECK )
      59  #  if !defined(__ia64) || !defined(_PROTOTYPES) || defined(_LONG_DOUBLE_STRUCT)
      60  
      61  #endif  /* HPUX_LONG_DOUBLE_2_CHECK */
      62  
      63  
      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 */
      69  
      70  
      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 */
      75  
      76  
      77  #if defined( SVR4_GETCWD_CHECK )
      78  extern char* getcwd(char *, size_t);
      79  #endif  /* SVR4_GETCWD_CHECK */
      80  
      81  
      82  #if defined( SVR4_PROFIL_CHECK )
      83  profil(unsigned short *, size_t, int, unsigned int);
      84  #endif  /* SVR4_PROFIL_CHECK */
      85  
      86  
      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);
      92  
      93  #endif  /* SYSZ_STDLIB_FOR_SUN_CHECK */