diff options
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/dllinit.c | 2 | ||||
-rw-r--r-- | src/utils/getopt.c | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/src/utils/dllinit.c b/src/utils/dllinit.c index 0d3a55214b..83439c0865 100644 --- a/src/utils/dllinit.c +++ b/src/utils/dllinit.c @@ -52,7 +52,6 @@ BOOL APIENTRY DllMain(HINSTANCE hInst, DWORD reason, DECLARE_CYGWIN_DLL(DllMain); /* save hInstance from DllMain */ HINSTANCE __hDllInstance_base; - #endif /* __CYGWIN__ */ struct _reent *_impure_ptr; @@ -105,5 +104,4 @@ DllMain( } return TRUE; } - #endif /* CYGWIN_VERSION_DLL_MAJOR < 1001 */ diff --git a/src/utils/getopt.c b/src/utils/getopt.c index 8aa46c72f7..108f2d85f5 100644 --- a/src/utils/getopt.c +++ b/src/utils/getopt.c @@ -33,7 +33,6 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)getopt.c 8.3 (Berkeley) 4/27/95"; - #endif /* LIBC_SCCS and not lint */ #include <stdio.h> @@ -82,7 +81,6 @@ const char *ostr; if ((optopt = (int) *place++) == (int) ':' || !(oli = strchr(ostr, optopt))) { - /* * if the user didn't specify '-' as an option, assume it means * -1. |