net-snmp 5.7
getopt.h
00001 #ifndef _GETOPT_H_
00002 #define _GETOPT_H_ 1
00003 
00004 #ifndef NET_SNMP_CONFIG_H
00005 #error <net-snmp/net-snmp-config.h> must be included before <net-snmp/library/getopt.h>.
00006 #endif
00007 
00008 #if !defined(HAVE_GETOPT_H)
00009 
00010 #ifdef __cplusplus
00011 extern          "C" {
00012 #endif
00013 
00014 NETSNMP_IMPORT int   getopt(int, char *const *, const char *);
00015 NETSNMP_IMPORT char *optarg;
00016 NETSNMP_IMPORT int   optind, opterr, optopt, optreset;
00017 
00018 #ifdef __cplusplus
00019 }
00020 #endif
00021 
00022 #endif /* HAVE_GETOPT_H */
00023 
00024 #endif