summaryrefslogtreecommitdiff
path: root/defs.h
diff options
context:
space:
mode:
authorkx <kx@radix.pro>2023-03-24 02:53:04 +0300
committerkx <kx@radix.pro>2023-03-24 02:53:04 +0300
commit12c7b1c5658602269da2f5b75835ec0f5fab8890 (patch)
tree93f6f6b85830af69743d5ebda902d4305bf23f4f /defs.h
parent4e72ffe940d9aff7c019d37a6459e765902c1fae (diff)
downloadcscm-trunk.tar.xz
Version 0.1.4HEADcscm-0.1.4trunk
Diffstat (limited to 'defs.h')
-rw-r--r--defs.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/defs.h b/defs.h
new file mode 100644
index 0000000..8a69be9
--- /dev/null
+++ b/defs.h
@@ -0,0 +1,24 @@
+
+#ifndef __DEFS_H
+#define __DEFS_H
+
+
+#ifndef TRUE
+#define TRUE 1
+#endif
+#ifndef FALSE
+#define FALSE 0
+#endif
+
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* __DEFS_H */