2005-09-15 09:58:31 -04:00
|
|
|
|
|
|
|
#ifndef EL__OSDEP_RISCOS_SYSINFO_H
|
|
|
|
#define EL__OSDEP_RISCOS_SYSINFO_H
|
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2006-01-11 14:10:26 -05:00
|
|
|
#ifdef CONFIG_OS_RISCOS
|
2005-09-15 09:58:31 -04:00
|
|
|
|
|
|
|
#define SYSTEM_NAME "RISC OS"
|
|
|
|
#define SYSTEM_STR "riscos"
|
|
|
|
#define DEFAULT_SHELL "gos"
|
|
|
|
#define GETSHELL getenv("SHELL")
|
|
|
|
|
|
|
|
static inline int dir_sep(char x) { return x == '/' || x == '\\'; }
|
|
|
|
|
|
|
|
#define NO_FG_EXEC
|
|
|
|
#define NO_FILE_SECURITY
|
|
|
|
#define NO_FORK_ON_EXIT
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2005-09-15 09:58:31 -04:00
|
|
|
#endif
|