Merge commit 'v2.5.1'
[ossec-hids.git] / src / analysisd / cdb / uint32.h
diff --git a/src/analysisd/cdb/uint32.h b/src/analysisd/cdb/uint32.h
new file mode 100644 (file)
index 0000000..4d96f1a
--- /dev/null
@@ -0,0 +1,11 @@
+#ifndef UINT32_H
+#define UINT32_H
+
+/* adopted from libowfat 0.9 (GPL) */
+
+typedef unsigned int uint32;
+
+extern void uint32_pack(char *out,uint32 in);
+extern void uint32_unpack(const char *in,uint32 *out);
+
+#endif