summaryrefslogtreecommitdiff
path: root/toxav/rtp.c
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2016-09-11 15:47:51 +0100
committeriphydf <iphydf@users.noreply.github.com>2016-09-13 00:32:02 +0100
commit0aa2840164fc782f150cd45f8668ca623e6002cf (patch)
tree68d4b762c6233946fc3e73af546e2a5a5f6cdb16 /toxav/rtp.c
parent2b2dc07f6f7fe28a8e558125d977d2fa9cef3881 (diff)
Group #include directives in 3-4 groups.
1. Current module (if C file). 2. Headers from current library. 3. Headers from other library (e.g. toxcore includes in toxav). 4. System headers.
Diffstat (limited to 'toxav/rtp.c')
-rw-r--r--toxav/rtp.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/toxav/rtp.c b/toxav/rtp.c
index 6e0c22b2..05430c62 100644
--- a/toxav/rtp.c
+++ b/toxav/rtp.c
@@ -23,11 +23,13 @@
23#include "config.h" 23#include "config.h"
24#endif /* HAVE_CONFIG_H */ 24#endif /* HAVE_CONFIG_H */
25 25
26#include "rtp.h"
27
28#include "bwcontroller.h"
29
26#include "../toxcore/Messenger.h" 30#include "../toxcore/Messenger.h"
27#include "../toxcore/logger.h" 31#include "../toxcore/logger.h"
28#include "../toxcore/util.h" 32#include "../toxcore/util.h"
29#include "bwcontroller.h"
30#include "rtp.h"
31 33
32#include <assert.h> 34#include <assert.h>
33#include <stdlib.h> 35#include <stdlib.h>