1 
2 #ifndef EL__OSDEP_RISCOS_SYSINFO_H
3 #define EL__OSDEP_RISCOS_SYSINFO_H
4 
5 #ifdef CONFIG_RISCOS
6 
7 #define SYSTEM_NAME	"RISC OS"
8 #define SYSTEM_STR	"riscos"
9 #define DEFAULT_SHELL	"gos"
10 #define GETSHELL	getenv("SHELL")
11 
dir_sep(char x)12 static inline int dir_sep(char x) { return x == '/' || x == '\\'; }
13 
14 #define NO_FG_EXEC
15 #define NO_FILE_SECURITY
16 #define NO_FORK_ON_EXIT
17 
18 #endif
19 
20 #endif
21