summaryrefslogtreecommitdiff
path: root/auto_tests/toxav_many_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/toxav_many_test.c
parentad135181531e567255c314593984d16cdb839eba (diff)
Sort #includes in all source files.
Diffstat (limited to 'auto_tests/toxav_many_test.c')
-rw-r--r--auto_tests/toxav_many_test.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/auto_tests/toxav_many_test.c b/auto_tests/toxav_many_test.c
index 24d2ae6e..e3476512 100644
--- a/auto_tests/toxav_many_test.c
+++ b/auto_tests/toxav_many_test.c
@@ -12,26 +12,26 @@
12# include "helpers.h" 12# include "helpers.h"
13#endif 13#endif
14 14
15#include <sys/types.h>
16#include <stdint.h> 15#include <stdint.h>
17#include <string.h>
18#include <stdio.h> 16#include <stdio.h>
19#include <stdlib.h> 17#include <stdlib.h>
18#include <string.h>
19#include <sys/types.h>
20#include <time.h> 20#include <time.h>
21 21
22#include <vpx/vpx_image.h> 22#include <vpx/vpx_image.h>
23 23
24#include "../toxav/toxav.h"
25#include "../toxcore/crypto_core.h"
26#include "../toxcore/logger.h"
24#include "../toxcore/tox.h" 27#include "../toxcore/tox.h"
25#include "../toxcore/util.h" 28#include "../toxcore/util.h"
26#include "../toxcore/logger.h"
27#include "../toxcore/crypto_core.h"
28#include "../toxav/toxav.h"
29 29
30#if defined(_WIN32) || defined(__WIN32__) || defined (WIN32) 30#if defined(_WIN32) || defined(__WIN32__) || defined (WIN32)
31#define c_sleep(x) Sleep(1*x) 31#define c_sleep(x) Sleep(1*x)
32#else 32#else
33#include <unistd.h>
34#include <pthread.h> 33#include <pthread.h>
34#include <unistd.h>
35#define c_sleep(x) usleep(1000*x) 35#define c_sleep(x) usleep(1000*x)
36#endif 36#endif
37 37