From 6c26d968ba9d9b4c8b6af9b4bdb04861c29374b3 Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Fri, 2 Dec 2016 09:15:35 -0800 Subject: [PATCH] Fixing multiple getopt definitions --- libebutils/getopt.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libebutils/getopt.c b/libebutils/getopt.c index 785574a..3dfaadd 100644 --- a/libebutils/getopt.c +++ b/libebutils/getopt.c @@ -342,7 +342,6 @@ getopt(int nargc, char * const *nargv, const char *options) } return retval; } -#endif /* * getopt_long -- @@ -478,3 +477,5 @@ getopt_long(int nargc, char * const *nargv, const char *options, } return retval; } + +#endif