]> pd.if.org Git - zpackage/blobdiff - crypto/libeddsa/lib/bitness.h
add package signing code
[zpackage] / crypto / libeddsa / lib / bitness.h
diff --git a/crypto/libeddsa/lib/bitness.h b/crypto/libeddsa/lib/bitness.h
new file mode 100644 (file)
index 0000000..5850c7f
--- /dev/null
@@ -0,0 +1,12 @@
+#ifndef BITNESS_H
+#define BITNESS_H
+
+#ifndef NO_AUTO_BITNESS
+  #ifdef __LP64__
+    #define USE_64BIT  1
+  #else
+    #undef USE_64BIT
+  #endif
+#endif
+
+#endif