summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/crypto/crypto_aesctr.c1
-rw-r--r--lib/crypto/crypto_scrypt-nosse.c1
-rw-r--r--lib/crypto/crypto_scrypt-ref.c3
-rw-r--r--lib/crypto/crypto_scrypt-sse.c1
-rw-r--r--lib/crypto/sha256.c1
5 files changed, 1 insertions, 6 deletions
diff --git a/lib/crypto/crypto_aesctr.c b/lib/crypto/crypto_aesctr.c
index 00db8f0..bc7479c 100644
--- a/lib/crypto/crypto_aesctr.c
+++ b/lib/crypto/crypto_aesctr.c
@@ -26,7 +26,6 @@
* This file was originally written by Colin Percival as part of the Tarsnap
* online backup system.
*/
-#include "scrypt_platform.h"
#include <stdint.h>
#include <stdlib.h>
diff --git a/lib/crypto/crypto_scrypt-nosse.c b/lib/crypto/crypto_scrypt-nosse.c
index cad4d0e..9389029 100644
--- a/lib/crypto/crypto_scrypt-nosse.c
+++ b/lib/crypto/crypto_scrypt-nosse.c
@@ -26,7 +26,6 @@
* This file was originally written by Colin Percival as part of the Tarsnap
* online backup system.
*/
-#include "scrypt_platform.h"
#include <sys/types.h>
#include <sys/mman.h>
diff --git a/lib/crypto/crypto_scrypt-ref.c b/lib/crypto/crypto_scrypt-ref.c
index b47ca45..1b0d514 100644
--- a/lib/crypto/crypto_scrypt-ref.c
+++ b/lib/crypto/crypto_scrypt-ref.c
@@ -26,8 +26,7 @@
* This file was originally written by Colin Percival as part of the Tarsnap
* online backup system.
*/
-#include "scrypt_platform.h"
-
+
#include <errno.h>
#include <stdint.h>
#include <stdlib.h>
diff --git a/lib/crypto/crypto_scrypt-sse.c b/lib/crypto/crypto_scrypt-sse.c
index 875175e..0e6ff33 100644
--- a/lib/crypto/crypto_scrypt-sse.c
+++ b/lib/crypto/crypto_scrypt-sse.c
@@ -26,7 +26,6 @@
* This file was originally written by Colin Percival as part of the Tarsnap
* online backup system.
*/
-#include "scrypt_platform.h"
#include <sys/types.h>
#include <sys/mman.h>
diff --git a/lib/crypto/sha256.c b/lib/crypto/sha256.c
index 52148a3..d2f915f 100644
--- a/lib/crypto/sha256.c
+++ b/lib/crypto/sha256.c
@@ -23,7 +23,6 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
-#include "scrypt_platform.h"
#include <sys/types.h>