Commit: 437d4efda616a7698d601f5f506b2a1d75e7640d
Parent: c6ed589ec8e273cf3de2717698d40a4385397d15
Author: 0x766F6964
Date: Mon, 3 Aug 2020 16:41:26 -0600
os_dep.h: small clean up
Diffstat:
1 file changed, 0 insertions(+), 16 deletions(-)
diff --git a/os_dep.h b/os_dep.h
@@ -3,25 +3,9 @@
* This file is a part of the Links program, released under GPL.
*/
-#ifndef OS_DEP_H
-#define OS_DEP_H
-
-/* hardcoded limit of 10 OSes in default.c */
-
-#ifdef UNIX
-#undef UNIX
-#endif
-#define UNIX
-
-#if defined(UNIX)
-
static inline int dir_sep(unsigned char x) { return x == '/'; }
#define SYSTEM_ID 1
#define SYSTEM_NAME "Unix"
#define DEFAULT_SHELL "/bin/sh"
#define GETSHELL getenv("SHELL")
#define SHARED_CONFIG_DIR "/etc/"
-
-#endif
-
-#endif /* #ifndef OS_DEP_H */