Initial revision
authortomo <tomo>
Mon, 23 Sep 2002 05:17:02 +0000 (05:17 +0000)
committertomo <tomo>
Mon, 23 Sep 2002 05:17:02 +0000 (05:17 +0000)
src/s/darwin.h [new file with mode: 0644]

diff --git a/src/s/darwin.h b/src/s/darwin.h
new file mode 100644 (file)
index 0000000..5ba6d03
--- /dev/null
@@ -0,0 +1,18 @@
+/* s/ file for Darwin/MacOS X systems */
+
+#define SYSTEM_TYPE "darwin"
+
+/* Defines this as a BSD system, used in fakemail, for example */
+#ifndef NOT_C_CODE
+#include <sys/param.h>
+#endif
+
+/* The builtin malloc is broken in the sense that replacing it
+   with a user implementation is impossible. */
+#define SYSTEM_MALLOC
+
+#define HAVE_PTYS
+
+/* TAB3 is defined in Unix98, but darwin doesn't have it. 
+   OXTABS is the traditional BSD equivalent. */
+#define TAB3 OXTABS