diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-11-17 21:00:40 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-11-17 21:00:40 +0000 |
commit | abb6702fc2df96ea044d246e505c919dabb78159 (patch) | |
tree | e74fe2553f0d9467ac1df6233ce6593a35e97b04 /packet-ripng.c | |
parent | d50abaf3f4760996163539c90f4c982f2eaba4e6 (diff) | |
download | wireshark-abb6702fc2df96ea044d246e505c919dabb78159.tar.gz wireshark-abb6702fc2df96ea044d246e505c919dabb78159.tar.bz2 wireshark-abb6702fc2df96ea044d246e505c919dabb78159.zip |
Add #include <string.h>, to get prototypes for mem* and str* functions.
svn path=/trunk/; revision=2654
Diffstat (limited to 'packet-ripng.c')
-rw-r--r-- | packet-ripng.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packet-ripng.c b/packet-ripng.c index f41f1e8219..739d64a659 100644 --- a/packet-ripng.c +++ b/packet-ripng.c @@ -3,7 +3,7 @@ * (c) Copyright Jun-ichiro itojun Hagino <itojun@itojun.org> * derived from packet-rip.c * - * $Id: packet-ripng.c,v 1.14 2000/08/13 14:08:43 deniel Exp $ + * $Id: packet-ripng.c,v 1.15 2000/11/17 21:00:36 gram Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -35,6 +35,7 @@ #include <netinet/in.h> #endif +#include <string.h> #include <glib.h> #include "packet.h" #include "packet-ipv6.h" |