aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-04-02 09:59:41 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-04-02 09:59:41 +0000
commit450473d8f36f07b650e9a28351a6e645a8d8798e (patch)
tree9019a86bd0e9019e680a3d506eb87ad296b040e2 /epan
parent00514af948283a0f692292daa2c74313f3e1ec63 (diff)
"to_str.c" uses "size_t"; include <stdlib.h>, to declare it (necessary
on Windows). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3244 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan')
-rw-r--r--epan/to_str.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/epan/to_str.c b/epan/to_str.c
index eb815d2355..73c201cf65 100644
--- a/epan/to_str.c
+++ b/epan/to_str.c
@@ -1,7 +1,7 @@
/* to_str.h
* Routines for utilities to convert various other types to strings.
*
- * $Id: to_str.c,v 1.4 2001/04/02 02:30:06 guy Exp $
+ * $Id: to_str.c,v 1.5 2001/04/02 09:59:41 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -27,6 +27,8 @@
# include "config.h"
#endif
+#include <stdlib.h>
+
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif