modify inclusions

This commit is contained in:
Dubslow 2014-09-10 18:12:58 -05:00
parent b0fabd1caa
commit 45f3b9559b
2 changed files with 6 additions and 6 deletions

View File

@ -22,6 +22,12 @@
*/
#include "toxencryptsave.h"
#include "../toxcore/crypto_core.h"
#ifdef VANILLA_NACL
#include "crypto_pwhash_scryptsalsa208sha256/crypto_pwhash_scryptsalsa208sha256.h"
#include "crypto_pwhash_scryptsalsa208sha256/utils.h" /* sodium_memzero */
#endif
/* This "module" provides functions analogous to tox_load and tox_save in toxcore
* Clients should consider alerting their users that, unlike plain data, if even one bit

View File

@ -24,13 +24,7 @@
#ifndef TOXENCRYPTSAVE_H
#define TOXENCRYPTSAVE_H
#ifdef VANILLA_NACL
#include "crypto_pwhash_scryptsalsa208sha256/crypto_pwhash_scryptsalsa208sha256.h"
#include "crypto_pwhash_scryptsalsa208sha256/utils.h" /* sodium_memzero */
#endif
#include "../toxcore/tox.h"
#include "../toxcore/crypto_core.h"
#ifdef __cplusplus
extern "C" {