summaryrefslogtreecommitdiff
path: root/auto_tests/encryptsave_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/encryptsave_test.c
parentad135181531e567255c314593984d16cdb839eba (diff)
Sort #includes in all source files.
Diffstat (limited to 'auto_tests/encryptsave_test.c')
-rw-r--r--auto_tests/encryptsave_test.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/auto_tests/encryptsave_test.c b/auto_tests/encryptsave_test.c
index d27f7d6b..99a5792e 100644
--- a/auto_tests/encryptsave_test.c
+++ b/auto_tests/encryptsave_test.c
@@ -2,19 +2,19 @@
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 "helpers.h" 12#include "helpers.h"
13 13
14#include "../toxcore/tox.h" 14#include "../toxcore/tox.h"
15 15
16#include "../toxencryptsave/toxencryptsave.h"
17#include "../toxcore/crypto_core.h" 16#include "../toxcore/crypto_core.h"
17#include "../toxencryptsave/toxencryptsave.h"
18#ifdef VANILLA_NACL 18#ifdef VANILLA_NACL
19#include "../toxencryptsave/crypto_pwhash_scryptsalsa208sha256/crypto_pwhash_scryptsalsa208sha256.h" 19#include "../toxencryptsave/crypto_pwhash_scryptsalsa208sha256/crypto_pwhash_scryptsalsa208sha256.h"
20#endif 20#endif