aboutsummaryrefslogtreecommitdiffstats
path: root/lib/crypto/c_src/common.h
diff options
context:
space:
mode:
authorDoug Hogan <[email protected]>2018-12-20 01:56:21 -0800
committerDoug Hogan <[email protected]>2018-12-20 02:30:21 -0800
commitaef4b2076a33aaebf9e555eca10ead1b89a70d60 (patch)
tree7fa76a74ed4e3e5d60dcc7df96fbbd727dfe1617 /lib/crypto/c_src/common.h
parent6f31b48e6c3bf0ee949ba512ff53d83a92dd0c71 (diff)
downloadotp-aef4b2076a33aaebf9e555eca10ead1b89a70d60.tar.gz
otp-aef4b2076a33aaebf9e555eca10ead1b89a70d60.tar.bz2
otp-aef4b2076a33aaebf9e555eca10ead1b89a70d60.zip
Move all atoms to a new file and add common header
Diffstat (limited to 'lib/crypto/c_src/common.h')
-rw-r--r--lib/crypto/c_src/common.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/crypto/c_src/common.h b/lib/crypto/c_src/common.h
new file mode 100644
index 0000000000..e0ef2e3ffa
--- /dev/null
+++ b/lib/crypto/c_src/common.h
@@ -0,0 +1,16 @@
+#ifndef E_COMMON_H__
+#define E_COMMON_H__ 1
+
+#ifdef __WIN32__
+# include <windows.h>
+#endif
+
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+
+#include <erl_nif.h>
+#include "openssl_config.h"
+#include "atoms.h"
+
+#endif /* E_COMMON_H__ */