aboutsummaryrefslogtreecommitdiffstats
path: root/ui/tap-rtp-common.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2018-06-22 00:11:50 -0700
committerGuy Harris <guy@alum.mit.edu>2018-06-22 07:14:14 +0000
commitedc2bebcecbdfdf21e7b48869d28cc1ca562846f (patch)
tree6f3d16cee246a49168dc58c79c3ac465547dee15 /ui/tap-rtp-common.c
parent8ef62a83f4305d2880990fc875f3b821f001e4e3 (diff)
Include <stdlib.h>, to declare exit().
Move the standard C includes up to the top, while we're at it. Change-Id: I627536097955d96e7e5dcd48d9c1cc38a221fefb Reviewed-on: https://code.wireshark.org/review/28375 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'ui/tap-rtp-common.c')
-rw-r--r--ui/tap-rtp-common.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/ui/tap-rtp-common.c b/ui/tap-rtp-common.c
index 443dd181ed..2cfb43846e 100644
--- a/ui/tap-rtp-common.c
+++ b/ui/tap-rtp-common.c
@@ -17,11 +17,12 @@
#include "config.h"
-#include <glib.h>
-
+#include <stdlib.h>
+#include <string.h>
#include <math.h>
-#include <string.h>
+#include <glib.h>
+
#include <epan/rtp_pt.h>
#include <epan/addr_resolv.h>
#include <epan/proto_data.h>