summaryrefslogtreecommitdiff
path: root/src/DES.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/DES.c')
-rw-r--r--src/DES.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/DES.c b/src/DES.c
index 96a9335..096e309 100644
--- a/src/DES.c
+++ b/src/DES.c
@@ -24,6 +24,8 @@
* Country of origin: Canada
*/
+#include "Python.h"
+
/* Setting this will cause LibTomCrypt to return CRYPT_INVALID_ARG when its
* assert-like LTC_ARGCHK macro fails. */
#define ARGTYPE 4
@@ -34,7 +36,6 @@
#undef DES /* this is needed because tomcrypt_custom.h defines DES to an empty string */
#include <assert.h>
-#include "Python.h"
typedef struct {
symmetric_key sk;