aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtsp.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-rtsp.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-rtsp.c')
-rw-r--r--epan/dissectors/packet-rtsp.c18
1 files changed, 10 insertions, 8 deletions
diff --git a/epan/dissectors/packet-rtsp.c b/epan/dissectors/packet-rtsp.c
index a3dd3f14c2..debbc2e260 100644
--- a/epan/dissectors/packet-rtsp.c
+++ b/epan/dissectors/packet-rtsp.c
@@ -29,29 +29,31 @@
* http://www.iana.org/assignments/rsvp-parameters
*/
+#ifdef HAVE_CONFIG_H
#include "config.h"
+#endif
#include <stdio.h>
+#include <stdlib.h>
#include <string.h>
#include <ctype.h>
-#include <epan/prefs.h>
-
#include <glib.h>
-#include <wsutil/str_util.h>
-
#include <epan/packet.h>
#include <epan/req_resp_hdrs.h>
-#include "packet-rtp.h"
-#include "packet-rtcp.h"
-#include "packet-rdt.h"
+#include <epan/prefs.h>
#include <epan/conversation.h>
#include <epan/strutil.h>
-#include "packet-e164.h"
#include <epan/emem.h>
#include <epan/tap.h>
#include <epan/tap-voip.h>
+#include <wsutil/str_util.h>
+
+#include "packet-rdt.h"
+#include "packet-rtp.h"
+#include "packet-rtcp.h"
+#include "packet-e164.h"
static int proto_rtsp = -1;