1 
2 #ifndef EL__OSDEP_BEOS_SYSINFO_H
3 #define EL__OSDEP_BEOS_SYSINFO_H
4 
5 #ifdef CONFIG_BEOS
6 
7 #define SYSTEM_NAME	"BeOS"
8 #define SYSTEM_STR	"beos"
9 #define DEFAULT_SHELL	"/bin/sh"
10 #define GETSHELL	getenv("SHELL")
11 
dir_sep(char x)12 static inline int dir_sep(char x) { return x == '/'; }
13 
14 #define FS_UNIX_RIGHTS
15 #define FS_UNIX_SOFTLINKS
16 #define FS_UNIX_USERS
17 
18 #include <pwd.h>
19 #include <grp.h>
20 
21 #define NO_FORK_ON_EXIT
22 #define THREAD_SAFE_LOOKUP
23 
24 #endif
25 
26 #endif
27