aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-isakmp.c
diff options
context:
space:
mode:
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2011-05-20 19:00:09 +0000
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2011-05-20 19:00:09 +0000
commitfd97b6ff52a7179dbf65d817ff7ace91ba7bb469 (patch)
treeb9195dcbf598c27c4289cbd6ea73a04a0a321a23 /epan/dissectors/packet-isakmp.c
parent8e32a961e740b0045e64b9968c6a685cd85d65b6 (diff)
Add #include <stdlib.h> to files which reference fcns declared in stdlib.h;
(In many cases I previously incorrectly removed the #include <stdlib.h>). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37334 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-isakmp.c')
-rw-r--r--epan/dissectors/packet-isakmp.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/epan/dissectors/packet-isakmp.c b/epan/dissectors/packet-isakmp.c
index 223c03795e..7793d43ead 100644
--- a/epan/dissectors/packet-isakmp.c
+++ b/epan/dissectors/packet-isakmp.c
@@ -48,19 +48,13 @@
#endif
#include <stdio.h>
+#include <stdlib.h>
#include <string.h>
#include <glib.h>
-#ifdef HAVE_LIBGCRYPT
-#include <gcrypt.h>
-#include <epan/strutil.h>
-#include <wsutil/file_util.h>
-#include <epan/uat.h>
-#endif
-
-#include <epan/proto.h>
#include <epan/packet.h>
+
#include <epan/ipproto.h>
#include <epan/asn1.h>
#include <epan/reassemble.h>
@@ -70,6 +64,12 @@
#include <epan/prefs.h>
#include <epan/expert.h>
+#ifdef HAVE_LIBGCRYPT
+#include <gcrypt.h>
+#include <epan/strutil.h>
+#include <wsutil/file_util.h>
+#include <epan/uat.h>
+#endif
/* Struct for the byte_to_str, match_bytestr_idx, and match_bytestr functions */