summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Kendrick (fatigue) <rjek@rjek.com>2013-07-30 13:22:12 +0100
committerRob Kendrick (fatigue) <rjek@rjek.com>2013-07-30 13:22:12 +0100
commitd07c68a5972dac78cda2041fb66b51c2e1611076 (patch)
tree6b2f358e4e9061dd0dca1ca967ec44c4832e9bcc
parentd1dd923d50995a472f41f1a958f7665598fd8941 (diff)
downloadlua-scrypt-d07c68a5972dac78cda2041fb66b51c2e1611076.tar.gz
Remove mention of scrypt_platform.h from crypto library
-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>