=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/include/stdlib.h,v retrieving revision 1.23 retrieving revision 1.24 diff -c -r1.23 -r1.24 *** src/include/stdlib.h 2002/12/02 15:38:54 1.23 --- src/include/stdlib.h 2002/12/03 20:24:29 1.24 *************** *** 1,4 **** ! /* $OpenBSD: stdlib.h,v 1.23 2002/12/02 15:38:54 millert Exp $ */ /* $NetBSD: stdlib.h,v 1.25 1995/12/27 21:19:08 jtc Exp $ */ /*- --- 1,4 ---- ! /* $OpenBSD: stdlib.h,v 1.24 2002/12/03 20:24:29 millert Exp $ */ /* $NetBSD: stdlib.h,v 1.25 1995/12/27 21:19:08 jtc Exp $ */ /*- *************** *** 173,178 **** --- 173,180 ---- 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; *************** *** 181,186 **** --- 183,189 ---- 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 *));