diff options
author | Ulf Lamping <ulf.lamping@web.de> | 2008-04-13 03:32:24 +0000 |
---|---|---|
committer | Ulf Lamping <ulf.lamping@web.de> | 2008-04-13 03:32:24 +0000 |
commit | 644a474c95cbfc18200e89cff906cd5fad962038 (patch) | |
tree | a6bb135cc85bec3f3c15a7bb5ea4d93d38975123 /gtk/rtp_stream.c | |
parent | 8e3e8b588f6a729dae0fa4d0792cf8ed1516eb7e (diff) | |
download | wireshark-644a474c95cbfc18200e89cff906cd5fad962038.tar.gz wireshark-644a474c95cbfc18200e89cff906cd5fad962038.tar.bz2 wireshark-644a474c95cbfc18200e89cff906cd5fad962038.zip |
sort #includes by directories
svn path=/trunk/; revision=24969
Diffstat (limited to 'gtk/rtp_stream.c')
-rw-r--r-- | gtk/rtp_stream.c | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/gtk/rtp_stream.c b/gtk/rtp_stream.c index fb126a2975..06a323c7e4 100644 --- a/gtk/rtp_stream.c +++ b/gtk/rtp_stream.c @@ -28,17 +28,7 @@ #ifdef HAVE_CONFIG_H # include "config.h" #endif - -#include "globals.h" - -#include <epan/tap.h> -#include "register.h" -#include <epan/dissectors/packet-rtp.h> - - -#include "alert_box.h" -#include "simple_dialog.h" -#include "file_util.h" +#include <string.h> #ifdef HAVE_FCNTL_H #include <fcntl.h> @@ -48,12 +38,23 @@ # include <sys/types.h> #endif -#include <string.h> + +#include <epan/epan.h> +#include <epan/packet.h> +#include <epan/tap.h> +#include <epan/dissectors/packet-rtp.h> #include <epan/addr_resolv.h> -#include "rtp_stream.h" -#include "rtp_stream_dlg.h" -#include "tap-rtp-common.h" +#include "../globals.h" +#include "../register.h" +#include "../alert_box.h" +#include "../simple_dialog.h" +#include "../tap-rtp-common.h" +#include "wiretap/file_util.h" + +#include "gtk/rtp_stream.h" +#include "gtk/rtp_stream_dlg.h" + /****************************************************************************/ /* redraw the output */ |