summaryrefslogtreecommitdiff
path: root/tests/std/base.toc
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2020-05-08 13:58:17 -0400
committerLeo Tenenbaum <pommicket@gmail.com>2020-05-08 13:58:17 -0400
commit8b4a6f6298fadf92a4f9a5d9879225ba7d27270d (patch)
treefa640c60c6b8be226da1a8797c319218d3ef31d1 /tests/std/base.toc
parent38d57cdce42115fac4eb48bb441ac31f0fd81a7a (diff)
got double include to work
Diffstat (limited to 'tests/std/base.toc')
-rw-r--r--tests/std/base.toc23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/std/base.toc b/tests/std/base.toc
deleted file mode 100644
index bdb91e0..0000000
--- a/tests/std/base.toc
+++ /dev/null
@@ -1,23 +0,0 @@
-PLATFORM_OTHER ::= 0;
-PLATFORM_LINUX ::= 1;
-PLATFORM_WINDOWS ::= 2;
-PLATFORM_OSX ::= 3;
-PLATFORM_FREEBSD ::= 4;
-PLATFORM_OPENBSD ::= 5;
-PLATFORM_MISC_UNIX ::= 6;
-
-PLATFORM ::= #builtin("platform");
-#if PLATFORM == PLATFORM_LINUX {
- libc ::= "libc.so.6";
-} elif PLATFORM == PLATFORM_WINDOWS {
- libc ::= "msvcrt.dll";
-} elif PLATFORM == PLATFORM_OSX {
- libc ::= "libc.dylib";
-} elif PLATFORM == PLATFORM_FREEBSD || PLATFORM == PLATFORM_OPENBSD {
- libc ::= "libc.so";
-} else {
- /* maybe it's non-linux gnu? */
- libc ::= "libc.so.6";
-}
-
-