You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-10 01:22:48 +03:00
16 lines
273 B
C
16 lines
273 B
C
#ifndef _GETOPT_H_
|
|
#define _GETOPT_H_ 1
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
NETSNMP_IMPORT int getopt(int, char *const *, const char *);
|
|
NETSNMP_IMPORT char *optarg;
|
|
NETSNMP_IMPORT int optind, opterr, optopt, optreset;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|