summaryrefslogtreecommitdiff
path: root/auto_tests/TCP_test.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 /auto_tests/TCP_test.c
parentad135181531e567255c314593984d16cdb839eba (diff)
Sort #includes in all source files.
Diffstat (limited to 'auto_tests/TCP_test.c')
-rw-r--r--auto_tests/TCP_test.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/auto_tests/TCP_test.c b/auto_tests/TCP_test.c
index 2721fbd2..4c26926f 100644
--- a/auto_tests/TCP_test.c
+++ b/auto_tests/TCP_test.c
@@ -2,15 +2,15 @@
2#include "config.h" 2#include "config.h"
3#endif 3#endif
4 4
5#include <sys/types.h>
6#include <stdint.h>
7#include <string.h>
8#include <check.h> 5#include <check.h>
6#include <stdint.h>
9#include <stdlib.h> 7#include <stdlib.h>
8#include <string.h>
9#include <sys/types.h>
10#include <time.h> 10#include <time.h>
11 11
12#include "../toxcore/TCP_server.h"
13#include "../toxcore/TCP_client.h" 12#include "../toxcore/TCP_client.h"
13#include "../toxcore/TCP_server.h"
14 14
15#include "../toxcore/util.h" 15#include "../toxcore/util.h"
16 16