Compilation fix on Mingw32.
[elinks.git] / src / osdep / beos / sysinfo.h
blob22c28a6b1da482d99ccee5f03b39011b357eb71e
2 #ifndef EL__OSDEP_BEOS_SYSINFO_H
3 #define EL__OSDEP_BEOS_SYSINFO_H
5 #ifdef CONFIG_OS_BEOS
7 #define SYSTEM_NAME "BeOS"
8 #define SYSTEM_STR "beos"
9 #define DEFAULT_SHELL "/bin/sh"
10 #define GETSHELL getenv("SHELL")
12 static inline int dir_sep(char x) { return x == '/'; }
14 #define FS_UNIX_RIGHTS
15 #define FS_UNIX_SOFTLINKS
16 #define FS_UNIX_USERS
18 #include <pwd.h>
19 #include <grp.h>
21 #define NO_FORK_ON_EXIT
22 #define THREAD_SAFE_LOOKUP
24 #endif
26 #endif