diff options
author | Peter Eisentraut | 2001-01-11 23:32:03 +0000 |
---|---|---|
committer | Peter Eisentraut | 2001-01-11 23:32:03 +0000 |
commit | 7cd971183c0d34ff4e6acd5d8636a094a5c524e9 (patch) | |
tree | c73bf768256e54dd481bd43af005d5b14519bb15 | |
parent | 9b19224666ac5e502429e7a94a8b9b8a8083fc7c (diff) |
#ifdef out entire file for newer Cygwin versions.
-rw-r--r-- | src/utils/dllinit.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/utils/dllinit.c b/src/utils/dllinit.c index 06fbdccc82..03c07d1521 100644 --- a/src/utils/dllinit.c +++ b/src/utils/dllinit.c @@ -1,3 +1,6 @@ +#include <cygwin/version.h> +#if CYGWIN_VERSION_DLL_MAJOR < 1001 + /* dllinit.c -- Portable DLL initialization. Copyright (C) 1998 Free Software Foundation, Inc. Contributed by Mumit Khan ([email protected]). @@ -102,3 +105,5 @@ DllMain( } return TRUE; } + +#endif /* CYGWIN_VERSION_DLL_MAJOR < 1001 */ |