aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTom Rhodes <trhodes@FreeBSD.org>2006-01-27 05:17:25 +0000
committerTom Rhodes <trhodes@FreeBSD.org>2006-01-27 05:17:25 +0000
commit05dd95926a2d44879e70ef44f51ce326f81c28f3 (patch)
treef7c04ba5d7b222b28fb1dec12c96c6cd2ae54e61 /include
parentf0367935b35804f8808f821523d969080e342d51 (diff)
Notes
Diffstat (limited to 'include')
-rw-r--r--include/stdlib.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/stdlib.h b/include/stdlib.h
index 0ae6b181351e..899cccd7d6ff 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -171,7 +171,7 @@ void unsetenv(const char *);
*/
#if __XSI_VISIBLE
/* XXX XSI requires pollution from <sys/wait.h> here. We'd rather not. */
-/* long a64l(const char *); */
+long a64l(const char *);
double drand48(void);
/* char *ecvt(double, int, int * __restrict, int * __restrict); */
double erand48(unsigned short[3]);
@@ -181,7 +181,7 @@ int getsubopt(char **, char *const *, char **);
int grantpt(int);
char *initstate(unsigned long /* XSI requires u_int */, char *, long);
long jrand48(unsigned short[3]);
-/* char *l64a(long); */
+char *l64a(long);
void lcong48(unsigned short[7]);
long lrand48(void);
#ifndef _MKSTEMP_DECLARED
@@ -257,6 +257,7 @@ __const char *
getprogname(void);
int heapsort(void *, size_t, size_t, int (*)(const void *, const void *));
+int l64a_r(long, char *, int);
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 *));