From 4038ab95a094b363f1748f3dcb51511a1217475d Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 15 Apr 2024 07:40:05 +0200 Subject: Adding upstream version 2.0.16. Signed-off-by: Daniel Baumann --- utils/raptor_getopt.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 utils/raptor_getopt.h (limited to 'utils/raptor_getopt.h') diff --git a/utils/raptor_getopt.h b/utils/raptor_getopt.h new file mode 100644 index 0000000..56ba8ea --- /dev/null +++ b/utils/raptor_getopt.h @@ -0,0 +1,21 @@ +/* + * Public Domain getopt header + * + */ + +#ifndef RAPTOR_GETOPT_H +#define RAPTOR_GETOPT_H + +#ifdef __cplusplus +extern "C" { +#endif + +int getopt(int argc, char * const argv[], const char *optstring); +extern char *optarg; +extern int optind, opterr, optopt; + +#ifdef __cplusplus +} +#endif + +#endif -- cgit v1.2.3