1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00
elinks/src/osdep/dos/sysinfo.h
2022-05-10 20:19:42 +02:00

20 lines
361 B
C

#ifndef EL__OSDEP_DOS_SYSINFO_H
#define EL__OSDEP_DOS_SYSINFO_H
#ifdef CONFIG_OS_DOS
#define SYSTEM_NAME "DOS"
#define SYSTEM_STR "DOS"
#define DEFAULT_SHELL "command.com"
#define GETSHELL getenv("COMSPEC")
#define dir_sep(x) ((x) == '/' || (x) == '\\')
#define NO_ASYNC_LOOKUP
/* #define NO_FG_EXEC */
#define DOS_FS
#define NO_FORK_ON_EXIT
#endif
#endif