Add getopt-compat.h

This commit is contained in:
Kurt Zeilenga 1998-10-20 20:34:55 +00:00
parent f6598a69e7
commit 9c58b13dd4

14
include/getopt-compat.h Normal file
View File

@ -0,0 +1,14 @@
/*
* getopt(3) declarations
*/
#ifndef _GETOPT_COMPAT_H
#define _GETOPT_COMPAT_H
#include <ldap_cdefs.h>
extern char *optarg;
extern int optind, opterr, optopt;
LDAP_F int getopt LDAP_P((int, char * const [], const char *));
#endif /* _GETOPT_COMPAT_H */