summaryrefslogtreecommitdiff
path: root/toxencryptsave
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 /toxencryptsave
parentad135181531e567255c314593984d16cdb839eba (diff)
Sort #includes in all source files.
Diffstat (limited to 'toxencryptsave')
-rw-r--r--toxencryptsave/toxencryptsave.c6
-rw-r--r--toxencryptsave/toxencryptsave.h4
2 files changed, 5 insertions, 5 deletions
diff --git a/toxencryptsave/toxencryptsave.c b/toxencryptsave/toxencryptsave.c
index e62e2283..bcbe9518 100644
--- a/toxencryptsave/toxencryptsave.c
+++ b/toxencryptsave/toxencryptsave.c
@@ -25,14 +25,14 @@
25#include "config.h" 25#include "config.h"
26#endif 26#endif
27 27
28#include "toxencryptsave.h"
29#include "defines.h"
30#include "../toxcore/crypto_core.h" 28#include "../toxcore/crypto_core.h"
29#include "defines.h"
30#include "toxencryptsave.h"
31#define SET_ERROR_PARAMETER(param, x) {if(param) {*param = x;}} 31#define SET_ERROR_PARAMETER(param, x) {if(param) {*param = x;}}
32 32
33#ifdef VANILLA_NACL 33#ifdef VANILLA_NACL
34#include "crypto_pwhash_scryptsalsa208sha256/crypto_pwhash_scryptsalsa208sha256.h"
35#include <crypto_hash_sha256.h> 34#include <crypto_hash_sha256.h>
35#include "crypto_pwhash_scryptsalsa208sha256/crypto_pwhash_scryptsalsa208sha256.h"
36#endif 36#endif
37 37
38#if TOX_PASS_SALT_LENGTH != crypto_pwhash_scryptsalsa208sha256_SALTBYTES 38#if TOX_PASS_SALT_LENGTH != crypto_pwhash_scryptsalsa208sha256_SALTBYTES
diff --git a/toxencryptsave/toxencryptsave.h b/toxencryptsave/toxencryptsave.h
index cf191810..6451f3f5 100644
--- a/toxencryptsave/toxencryptsave.h
+++ b/toxencryptsave/toxencryptsave.h
@@ -28,9 +28,9 @@
28extern "C" { 28extern "C" {
29#endif 29#endif
30 30
31#include <stdint.h>
32#include <stddef.h>
33#include <stdbool.h> 31#include <stdbool.h>
32#include <stddef.h>
33#include <stdint.h>
34 34
35#ifndef TOX_DEFINED 35#ifndef TOX_DEFINED
36#define TOX_DEFINED 36#define TOX_DEFINED