aboutsummaryrefslogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>1999-04-05 22:51:44 +0000
committerGuy Harris <guy@alum.mit.edu>1999-04-05 22:51:44 +0000
commit271f2a1ffffc12048e0e76c8d76d628ea0b732fb (patch)
tree6f023f7d986cd220d9991772d261e845f493d507 /util.c
parent2400bb0453509c90ae6bfdc797e464761a45b473 (diff)
downloadwireshark-271f2a1ffffc12048e0e76c8d76d628ea0b732fb.tar.gz
wireshark-271f2a1ffffc12048e0e76c8d76d628ea0b732fb.tar.bz2
wireshark-271f2a1ffffc12048e0e76c8d76d628ea0b732fb.zip
Get rid of include of <strings.h> from "util.c", as it's not needed, and
change include of <strings.h> in "menu.c" to include <string.h>, the latter being the ANSI standard include file for string functions; that eliminates all use of <strings.h< so get rid of test for its existence in "configure.in" as well. svn path=/trunk/; revision=239
Diffstat (limited to 'util.c')
-rw-r--r--util.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/util.c b/util.c
index 816b0379f9..e3b551d244 100644
--- a/util.c
+++ b/util.c
@@ -1,7 +1,7 @@
/* util.c
* Utility routines
*
- * $Id: util.c,v 1.12 1999/03/31 08:20:28 guy Exp $
+ * $Id: util.c,v 1.13 1999/04/05 22:51:44 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -32,7 +32,6 @@
#include <gtk/gtk.h>
#include <stdarg.h>
-#include <strings.h>
#include <stdio.h>
#ifdef NEED_SNPRINTF_H