summaryrefslogtreecommitdiff
path: root/toxav/rtp.c
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2016-09-01 00:33:20 +0100
committeriphydf <iphydf@users.noreply.github.com>2016-09-01 16:35:46 +0100
commit77db27331eb326615395fa59f3741424f85887bb (patch)
tree233270b558c30f9a045e30e09c2d5681c800a139 /toxav/rtp.c
parentad135181531e567255c314593984d16cdb839eba (diff)
Sort #includes in all source files.
Diffstat (limited to 'toxav/rtp.c')
-rw-r--r--toxav/rtp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/toxav/rtp.c b/toxav/rtp.c
index a226f3ff..1556d23d 100644
--- a/toxav/rtp.c
+++ b/toxav/rtp.c
@@ -23,14 +23,14 @@
23#include "config.h" 23#include "config.h"
24#endif /* HAVE_CONFIG_H */ 24#endif /* HAVE_CONFIG_H */
25 25
26#include "rtp.h" 26#include "../toxcore/Messenger.h"
27#include "bwcontroller.h"
28#include "../toxcore/logger.h" 27#include "../toxcore/logger.h"
29#include "../toxcore/util.h" 28#include "../toxcore/util.h"
30#include "../toxcore/Messenger.h" 29#include "bwcontroller.h"
30#include "rtp.h"
31 31
32#include <stdlib.h>
33#include <assert.h> 32#include <assert.h>
33#include <stdlib.h>
34 34
35 35
36int handle_rtp_packet (Messenger *m, uint32_t friendnumber, const uint8_t *data, uint16_t length, void *object); 36int handle_rtp_packet (Messenger *m, uint32_t friendnumber, const uint8_t *data, uint16_t length, void *object);