1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00
elinks/src/osdep/riscos/sysinfo.h

30 lines
440 B
C
Raw Normal View History

#ifndef EL__OSDEP_RISCOS_SYSINFO_H
#define EL__OSDEP_RISCOS_SYSINFO_H
#ifdef __cplusplus
extern "C" {
#endif
2006-01-11 14:10:26 -05:00
#ifdef CONFIG_OS_RISCOS
#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
#ifdef __cplusplus
}
#endif
#endif