(getopt) [_WIN32]: Only getopt.c for MSC. MinGW has getopt()

in the library.
This commit is contained in:
Ron Koenderink 2007-08-19 01:51:34 +00:00
parent fd4bed679b
commit 45e6ef2f9f

View file

@ -1,3 +1,4 @@
#ifdef _MSC_VER
/* Getopt for GNU. /* Getopt for GNU.
NOTE: getopt is now part of the C library, so if you don't know what NOTE: getopt is now part of the C library, so if you don't know what
"Keep this file name-space clean" means, talk to drepper@gnu.org "Keep this file name-space clean" means, talk to drepper@gnu.org
@ -985,3 +986,4 @@ getopt (argc, argv, optstring)
} }
#endif /* Not ELIDE_CODE. */ #endif /* Not ELIDE_CODE. */
#endif /* _MSC_VER */