summaryrefslogtreecommitdiff
path: root/src/config.h.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.h.in')
-rw-r--r--src/config.h.in31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/config.h.in b/src/config.h.in
deleted file mode 100644
index dc379e5..0000000
--- a/src/config.h.in
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef CONFIG_H
-#define CONFIG_H
-
-
-
-/*
- From
- https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap02.html#tag_02_02_01:
-
- > For the C programming language, shall define _POSIX_C_SOURCE to be 200809L
- > before any header is included
-*/
-#define _POSIX_C_SOURCE 200809L
-
-
-/*
- From
- https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap02.html#tag_02_02_04:
-
- > For the C programming language, shall define _XOPEN_SOURCE to be 700 before
- > any header is included
-*/
-#define _XOPEN_SOURCE 700
-
-
-#define VERSION_MACRO_STRING "@VERSION@"
-#define DATE_MACRO_STRING "@DATE@"
-#define NAME_MACRO_STRING "@NAME@"
-#define LOCALEDIR_MACRO_STRING "@LOCALEDIR@"
-
-#endif