summaryrefslogtreecommitdiff
path: root/src/unistd/_POSIX2_VERSION.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2020-08-16 16:32:36 -0400
committerJakob Kaivo <jkk@ung.org>2020-08-16 16:32:36 -0400
commit687265e54a2eb757404c21d9a262643987e21dbb (patch)
tree3462c2a29f8626a3bef0f9d57c34f6a81c392478 /src/unistd/_POSIX2_VERSION.c
parent24a60ffba1893a3506a6ed15fd4b26479d966cf3 (diff)
rename non-compiled files to *.h
Diffstat (limited to 'src/unistd/_POSIX2_VERSION.c')
-rw-r--r--src/unistd/_POSIX2_VERSION.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/unistd/_POSIX2_VERSION.c b/src/unistd/_POSIX2_VERSION.c
deleted file mode 100644
index 6fef6009..00000000
--- a/src/unistd/_POSIX2_VERSION.c
+++ /dev/null
@@ -1,19 +0,0 @@
-#include <unistd.h>
-
-#if (defined _POSIX_C_SOURCE)
-#if _POSIX_C_SOURCE >= 200809L
-#define _POSIX2_VERSION (200809L)
-#elif _POSIX_C_SOURCE >= 200112L
-#define _POSIX2_VERSION (200112L)
-#elif _POSIX_C_SOURCE >= 199506L
-#define _POSIX2_VERSION (199506L)
-#elif _POSIX_C_SOURCE >= 2
-#define _POSIX2_VERSION (199209L)
-#else
-#undef _POSIX2_VERSION
-#endif
-#endif
-
-/*
-POSIX(2)
-*/