summaryrefslogtreecommitdiff
path: root/talloc/replace.h
diff options
context:
space:
mode:
Diffstat (limited to 'talloc/replace.h')
-rw-r--r--talloc/replace.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/talloc/replace.h b/talloc/replace.h
new file mode 100644
index 0000000..1847a8e
--- /dev/null
+++ b/talloc/replace.h
@@ -0,0 +1,41 @@
+#ifndef _REPLACE_H_
+#define _REPLACE_H_
+
+#include <errno.h>
+
+#include <string.h>
+
+#if !defined( UINT_MAX )
+#include <limits.h>
+#endif
+
+#define _PUBLIC_ extern
+
+typedef int bool;
+
+#define true 1
+#define false 0
+
+typedef unsigned char uint8_t;
+
+#if !defined( MIN )
+#define MIN(a,b) ((a)<(b)?(a):(b))
+#endif
+
+#if defined( _MSC_VER )
+
+#define inline /* inline */
+
+#if defined( MS_WIN64 )
+typedef __int64 ssize_t;
+#else
+typedef _W64 int ssize_t;
+#endif
+
+#else
+
+#define HAVE_VA_COPY
+
+#endif /* defined( _MSC_VER ) */
+
+#endif /* _REPLACE_H_ */