aboutsummaryrefslogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-08-18 18:41:25 +0000
committerGuy Harris <guy@alum.mit.edu>2003-08-18 18:41:25 +0000
commit8649fcf232030bc3a4ad1c3eaf9e63c62085fbab (patch)
tree5bf4909fb9ce4c5e3ceacc9d869ab2a623c0a908 /util.c
parent718b853b532297bbc3e7d1cf893aa7d183f7e083 (diff)
From Gisle Vanem: MingW declares "rint()" in <math.h> and defines it in
a library, and declares "mode_t" in <sys/types.h>. svn path=/trunk/; revision=8185
Diffstat (limited to 'util.c')
-rw-r--r--util.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/util.c b/util.c
index fe142d8aad..b5789fe07a 100644
--- a/util.c
+++ b/util.c
@@ -1,7 +1,7 @@
/* util.c
* Utility routines
*
- * $Id: util.c,v 1.67 2003/07/11 06:45:59 guy Exp $
+ * $Id: util.c,v 1.68 2003/08/18 18:41:24 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -51,8 +51,10 @@
#ifdef HAVE_IO_H
#include <io.h>
+#ifndef __MINGW32__
typedef int mode_t; /* for win32 */
-#endif
+#endif /* __MINGW32__ */
+#endif /* HAVE_IO_H */
#ifdef HAVE_LIBZ
#include <zlib.h> /* to get the libz version number */