Initial commit of the HEAD branch of the ELinks CVS repository, as of
[elinks/images.git] / src / osdep / beos / sysinfo.h
blob3e0039e41aac58f06efb6599e604213168c7a924
1 /* $Id: sysinfo.h,v 1.7 2004/08/14 23:53:29 jonas Exp $ */
3 #ifndef EL__OSDEP_BEOS_SYSINFO_H
4 #define EL__OSDEP_BEOS_SYSINFO_H
6 #ifdef CONFIG_BEOS
8 #define SYSTEM_NAME "BeOS"
9 #define SYSTEM_STR "beos"
10 #define DEFAULT_SHELL "/bin/sh"
11 #define GETSHELL getenv("SHELL")
13 static inline int dir_sep(char x) { return x == '/'; }
15 #define FS_UNIX_RIGHTS
16 #define FS_UNIX_SOFTLINKS
17 #define FS_UNIX_USERS
19 #include <pwd.h>
20 #include <grp.h>
22 #define NO_FORK_ON_EXIT
23 #define THREAD_SAFE_LOOKUP
25 #endif
27 #endif