summaryrefslogtreecommitdiff
path: root/include/stdlib.h
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-02-20 18:12:45 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-02-20 18:12:45 +0000
commitbde8c24f15e5ea9f402714966731c2a96800756a (patch)
tree083f93626246672adf8e07e5404a896e42e55288 /include/stdlib.h
parentb147ee3f085f1217d0db6c547e0dd0a009326d49 (diff)
Revert local changes that snuck in to the last commit.
Diffstat (limited to 'include/stdlib.h')
-rw-r--r--include/stdlib.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/include/stdlib.h b/include/stdlib.h
index 8bf2d37fc7f..998fb4c2549 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: stdlib.h,v 1.18 2002/02/20 18:11:04 millert Exp $ */
+/* $OpenBSD: stdlib.h,v 1.19 2002/02/20 18:12:44 millert Exp $ */
/* $NetBSD: stdlib.h,v 1.25 1995/12/27 21:19:08 jtc Exp $ */
/*-
@@ -125,12 +125,8 @@ void *realloc(void *, size_t);
void srand(unsigned);
double strtod(const char *, char **);
long strtol(const char *, char **, int);
-long long
- strtoll(const char *, char **, int);
unsigned long
strtoul(const char *, char **, int);
-unsigned long long
- strtoull(const char *, char **, int);
int system(const char *);
/* these are currently just stubs */
@@ -169,8 +165,6 @@ char *l64a(long);
void cfree(void *);
-#ifndef _GETOPT_DEFINED_
-#define _GETOPT_DEFINED_
int getopt(int, char * const *, const char *);
extern char *optarg; /* getopt(3) external variables */
extern int opterr;
@@ -179,7 +173,6 @@ extern int optopt;
extern int optreset;
int getsubopt(char **, char * const *, char **);
extern char *suboptarg; /* getsubopt(3) external variable */
-#endif /* _GETOPT_DEFINED_ */
int heapsort(void *, size_t, size_t, int (*)(const void *, const void *));
int mergesort(void *, size_t, size_t, int (*)(const void *, const void *));