Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
946 B

  1. // cstdlib standard header
  2. #pragma once
  3. #ifndef _CSTDLIB_
  4. #define _CSTDLIB_
  5. #include <yvals.h>
  6. #ifdef _STD_USING
  7. #undef _STD_USING
  8. #include <stdlib.h>
  9. #define _STD_USING
  10. #else /* _STD_USING */
  11. #include <stdlib.h>
  12. _STD_BEGIN
  13. using ::size_t; using ::div_t; using ::ldiv_t;
  14. using ::abort; using ::abs; using ::atexit;
  15. using ::atof; using ::atoi; using ::atol;
  16. using ::bsearch; using ::calloc; using ::div;
  17. using ::exit; using ::free; using ::getenv;
  18. using ::labs; using ::ldiv; using ::malloc;
  19. using ::mblen; using ::mbstowcs; using ::mbtowc;
  20. using ::qsort; using ::rand; using ::realloc;
  21. using ::srand; using ::strtod; using ::strtol;
  22. using ::strtoul; using ::system;
  23. using ::wcstombs; using ::wctomb;
  24. _STD_END
  25. #endif /* _STD_USING */
  26. #endif /* _CSTDLIB_ */
  27. /*
  28. * Copyright (c) 1992-2001 by P.J. Plauger. ALL RIGHTS RESERVED.
  29. * Consult your license regarding permissions and restrictions.
  30. V3.10:0009 */