stdlib.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* DO NOT EDIT THIS FILE.
  2. It has been auto-edited by fixincludes from:
  3. "fixinc/tests/inc/stdlib.h"
  4. This had to be done to correct non-standard usages in the
  5. original, manufacturer supplied header file. */
  6. #if defined( AIX_STRTOF_CONST_CHECK )
  7. extern float strtof(const char *, char **);
  8. #endif /* AIX_STRTOF_CONST_CHECK */
  9. #if defined( HPUX11_ABS_CHECK )
  10. #if !defined(_MATH_INCLUDED) || defined(__GNUG__)
  11. #endif /* HPUX11_ABS_CHECK */
  12. #if defined( HPUX_LONG_DOUBLE_CHECK )
  13. extern long double strtold(const char *, char **);
  14. #endif /* HPUX_LONG_DOUBLE_CHECK */
  15. #if defined( HPUX_LONG_DOUBLE_2_CHECK )
  16. # if !defined(__ia64) || !defined(_PROTOTYPES) || defined(_LONG_DOUBLE_STRUCT)
  17. #endif /* HPUX_LONG_DOUBLE_2_CHECK */
  18. #if defined( INT_ABORT_FREE_AND_EXIT_CHECK )
  19. extern void abort(int);
  20. extern void free(void*);
  21. extern void exit(void*);
  22. #endif /* INT_ABORT_FREE_AND_EXIT_CHECK */
  23. #if defined( LYNXOS_MISSING_PUTENV_CHECK )
  24. extern char *getenv _AP((const char *));
  25. extern int putenv _AP((char *));
  26. #endif /* LYNXOS_MISSING_PUTENV_CHECK */
  27. #if defined( SVR4_GETCWD_CHECK )
  28. extern char* getcwd(char *, size_t);
  29. #endif /* SVR4_GETCWD_CHECK */
  30. #if defined( SVR4_PROFIL_CHECK )
  31. profil(unsigned short *, size_t, int, unsigned int);
  32. #endif /* SVR4_PROFIL_CHECK */
  33. #if defined( SYSZ_STDLIB_FOR_SUN_CHECK )
  34. extern void * calloc(size_t);
  35. extern void * malloc(size_t);
  36. extern void * realloc(void*,size_t);
  37. extern void * bsearch(void*,size_t,size_t);
  38. #endif /* SYSZ_STDLIB_FOR_SUN_CHECK */