diff options
author | Yang Tse <yangsita@gmail.com> | 2009-10-27 16:38:42 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2009-10-27 16:38:42 +0000 |
commit | b2f430898053258622eebee3328f03441367a32c (patch) | |
tree | 5edb80da68f40d6f5fda70da1fa73c907cc0f4e9 /lib/nwos.c | |
parent | 6a37135f4d56e89a85db50a38b800fd49eeafe3a (diff) | |
download | curl-b2f430898053258622eebee3328f03441367a32c.tar.gz |
Fix Pelles C Win32 target compilation issues
Diffstat (limited to 'lib/nwos.c')
-rw-r--r-- | lib/nwos.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/nwos.c b/lib/nwos.c index d9bfcf15e..399580c82 100644 --- a/lib/nwos.c +++ b/lib/nwos.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2007, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -87,6 +87,10 @@ int __deinit_environment ( void ) #endif /* __NOVELL_LIBC__ */ -#endif /* NETWARE */ +#else /* NETWARE */ +#ifdef __POCC__ +# pragma warn(disable:2024) /* Disable warning #2024: Empty input file */ +#endif +#endif /* NETWARE */ |