]> pd.if.org Git - zpackage/blobdiff - crypto/libeddsa/lib/compat.h
add package signing code
[zpackage] / crypto / libeddsa / lib / compat.h
diff --git a/crypto/libeddsa/lib/compat.h b/crypto/libeddsa/lib/compat.h
new file mode 100644 (file)
index 0000000..7c62b1d
--- /dev/null
@@ -0,0 +1,14 @@
+#ifndef COMPAT_H
+#define COMPAT_H
+
+/*
+ * macro for inline-functions to make visual c happy :-\
+ */
+
+#ifdef _MSC_VER
+#define INLINE __inline
+#else
+#define INLINE inline
+#endif
+
+#endif