Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/stdlib.h

    r4f4b4e7 r09b0b1fb  
    4343#endif
    4444
    45 /* Process Termination */
    4645#undef EXIT_FAILURE
    4746#define EXIT_FAILURE 1
    4847#undef EXIT_SUCCESS
    4948#define EXIT_SUCCESS 0
     49
     50#define _exit exit
    5051#define _Exit exit
    5152
    5253/* Array Sort Function */
    53 extern void posix_qsort(void *array, size_t count, size_t size,
    54     int (*compare)(const void *, const void *));
     54extern void posix_qsort(void *array, size_t count, size_t size, int (*compare)(const void *, const void *));
    5555
    5656/* Environment Access */
     
    6060extern char *posix_realpath(const char *restrict name, char *restrict resolved);
    6161
    62 /* Floating Point Conversion */
     62/* decimal to native floating point conversion */
    6363extern float posix_strtof(const char *restrict nptr, char **restrict endptr);
    6464extern double posix_strtod(const char *restrict nptr, char **restrict endptr);
    6565extern long double posix_strtold(const char *restrict nptr, char **restrict endptr);
    6666
    67 /* Integer Conversion */
     67/* decimal to native integer conversion */
    6868extern int posix_atoi(const char *str);
    6969
Note: See TracChangeset for help on using the changeset viewer.