Skip to content

Commit

Permalink
Without fixing the namespace issues, add prototypes for the new _Exit()
Browse files Browse the repository at this point in the history
and qsort_r() functions.  Fix one other missorted declaration.
  • Loading branch information
gwollman committed Sep 10, 2002
1 parent b677ec0 commit 3c4b3f0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions include/stdlib.h
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ extern int __mb_cur_max;
#define MB_CUR_MAX __mb_cur_max

__BEGIN_DECLS
void _Exit(int) __dead2;
void abort(void) __dead2;
int abs(int) __pure2;
int atexit(void (*)(void));
Expand Down Expand Up @@ -181,16 +182,18 @@ long long
lldiv_t lldiv(long long, long long) __pure2;
#endif
int mergesort(void *, size_t, size_t, int (*)(const void *, const void *));
void qsort_r(void *, size_t, size_t, void *,
int (*)(void *, const void *, const void *));
int radixsort(const unsigned char **, int, const unsigned char *,
unsigned);
int sradixsort(const unsigned char **, int, const unsigned char *,
unsigned);
int rand_r(unsigned *);
long random(void);
void *reallocf(void *, size_t);
char *realpath(const char *, char resolved_path[]);
void setprogname(const char *);
char *setstate(char *);
int sradixsort(const unsigned char **, int, const unsigned char *,
unsigned);
void sranddev(void);
void srandom(unsigned long);
void srandomdev(void);
Expand Down

0 comments on commit 3c4b3f0

Please sign in to comment.