Initial git import
[sxemacs] / src / s / darwin.h
1 /* s/ file for Darwin/MacOS X systems */
2
3 #define SYSTEM_TYPE "darwin"
4
5 /* Defines this as a BSD system, used in fakemail, for example */
6 #ifndef NOT_C_CODE
7 #include <sys/param.h>
8 #endif
9
10 /* The builtin malloc is broken in the sense that replacing it
11    with a user implementation is impossible. */
12 #ifndef SYSTEM_MALLOC
13 #define SYSTEM_MALLOC
14 #endif
15
16 #ifndef HAVE_PTYS
17 #define HAVE_PTYS
18 #endif
19
20 /* TAB3 is defined in Unix98, but darwin doesn't have it. 
21    OXTABS is the traditional BSD equivalent. */
22 #define TAB3 OXTABS