diff options
Diffstat (limited to 'src/getopt1.c')
-rw-r--r-- | src/getopt1.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/getopt1.c b/src/getopt1.c index af8e681..d872f65 100644 --- a/src/getopt1.c +++ b/src/getopt1.c @@ -19,10 +19,13 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + #ifdef HAVE_CONFIG_H #include <config.h> #endif +#ifndef HAVE_GETOPT_LONG + #include "getopt.h" #if !defined (__STDC__) || !__STDC__ @@ -187,3 +190,5 @@ main (argc, argv) } #endif /* TEST */ + +#endif /* HAVE_GETOPT_LONG */ |