aboutsummaryrefslogtreecommitdiffstats
path: root/menu.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>1999-04-05 22:51:44 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>1999-04-05 22:51:44 +0000
commit5689ef6daa0336acb458e93fc31eaa6a54d0ea19 (patch)
tree6f023f7d986cd220d9991772d261e845f493d507 /menu.c
parent8c8533dab4db83abce1d82b95184ecc0d6edc993 (diff)
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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@239 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/menu.c b/menu.c
index 68d34e2dcc..bf37e8db1a 100644
--- a/menu.c
+++ b/menu.c
@@ -1,7 +1,7 @@
/* menu.c
* Menu routines
*
- * $Id: menu.c,v 1.15 1999/03/01 20:32:54 gram Exp $
+ * $Id: menu.c,v 1.16 1999/04/05 22:51:43 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -32,7 +32,7 @@
#include <gtk/gtk.h>
#include <pcap.h> /* for capture.h */
-#include <strings.h>
+#include <string.h>
#include "ethereal.h"
#include "menu.h"