diff options
Diffstat (limited to 'src/h/features.h')
-rw-r--r-- | src/h/features.h | 30 |
1 files changed, 11 insertions, 19 deletions
diff --git a/src/h/features.h b/src/h/features.h index 047b4df..b22633a 100644 --- a/src/h/features.h +++ b/src/h/features.h @@ -18,6 +18,14 @@ Feature(1, "_V9", 0) /* Version 9 (unconditional) */ +#if UNIX + Feature(1, "_UNIX", "UNIX") +#endif /* UNIX */ + +#if MACINTOSH + Feature(1, "_MACINTOSH", "Macintosh") +#endif /* MACINTOSH */ + #if MSWIN Feature(1, "_MS_WINDOWS", "MS Windows") #endif /* MSWIN */ @@ -26,15 +34,9 @@ Feature(1, "_CYGWIN", "Cygwin") #endif /* CYGWIN */ -#if UNIX - Feature(1, "_UNIX", "UNIX") -#endif /* UNIX */ - Feature(1, "_ASCII", "ASCII") -#ifdef Coexpr Feature(1, "_CO_EXPRESSIONS", "co-expressions") -#endif /* Coexpr */ #ifdef LoadFunc Feature(1, "_DYNAMIC_LOADING", "dynamic loading") @@ -42,25 +44,15 @@ Feature(1, "", "environment variables") -#ifdef EventMon - Feature(1, "_EVENT_MONITOR", "event monitoring") -#endif /* EventMon */ - -#ifdef ExternalFunctions - Feature(1, "_EXTERNAL_FUNCTIONS", "external functions") -#endif /* ExternalFunctions */ +#ifdef LoadFunc + Feature(1, "_EXTERNAL_VALUES", "external values") +#endif /* LoadFunc */ #ifdef KeyboardFncs Feature(1, "_KEYBOARD_FUNCTIONS", "keyboard functions") #endif /* KeyboardFncs */ -#ifdef LargeInts Feature(largeints, "_LARGE_INTEGERS", "large integers") -#endif /* LargeInts */ - -#ifdef MultiThread - Feature(1, "_MULTITASKING", "multiple programs") -#endif /* MultiThread */ #ifdef Pipes Feature(1, "_PIPES", "pipes") |