summaryrefslogtreecommitdiff
path: root/src/nonstd/_PREDEF
diff options
context:
space:
mode:
Diffstat (limited to 'src/nonstd/_PREDEF')
-rw-r--r--src/nonstd/_PREDEF/__DATE__.c12
-rw-r--r--src/nonstd/_PREDEF/__FILE__.c14
-rw-r--r--src/nonstd/_PREDEF/__LINE__.c14
-rw-r--r--src/nonstd/_PREDEF/__STDC_HOSTED__.c10
-rw-r--r--src/nonstd/_PREDEF/__STDC_IEC_559_COMPLEX__.c10
-rw-r--r--src/nonstd/_PREDEF/__STDC_IEC_559__.c10
-rw-r--r--src/nonstd/_PREDEF/__STDC_ISO_10646__.c13
-rw-r--r--src/nonstd/_PREDEF/__STDC_VERSION__.c13
-rw-r--r--src/nonstd/_PREDEF/__STDC__.c14
-rw-r--r--src/nonstd/_PREDEF/__TIME__.c12
10 files changed, 0 insertions, 122 deletions
diff --git a/src/nonstd/_PREDEF/__DATE__.c b/src/nonstd/_PREDEF/__DATE__.c
deleted file mode 100644
index 14e40fcb..00000000
--- a/src/nonstd/_PREDEF/__DATE__.c
+++ /dev/null
@@ -1,12 +0,0 @@
-#define __DATE__ /** date of compilation **/
-
-/***
-is automatically defined by the compiler as the date of program
-compilation, in the format DEFINITION("Mmm dd yyyy").
-***/
-
-/*
-VALUE_TYPE(string literal)
-VALUE_FIXED(VAR("date-of-compilation"))
-STDC(1)
-*/
diff --git a/src/nonstd/_PREDEF/__FILE__.c b/src/nonstd/_PREDEF/__FILE__.c
deleted file mode 100644
index 257ae89b..00000000
--- a/src/nonstd/_PREDEF/__FILE__.c
+++ /dev/null
@@ -1,14 +0,0 @@
-#define __FILE__ /** source file name **/
-
-/***
-is automatically defined by the compiler as the file name of the
-current source file being compiled as a character string literal.
-
-THIS() can be changed using PPDIR(line).
-***/
-
-/*
-VALUE_TYPE(string literal)
-VALUE_FIXED(VAR(the current file name))
-STDC(1)
-*/
diff --git a/src/nonstd/_PREDEF/__LINE__.c b/src/nonstd/_PREDEF/__LINE__.c
deleted file mode 100644
index c6acb1b1..00000000
--- a/src/nonstd/_PREDEF/__LINE__.c
+++ /dev/null
@@ -1,14 +0,0 @@
-#define __LINE__ /** source file line number **/
-
-/***
-is automatically defined by the compiler as the current logical source
-line in the source file being compiled.
-
-THIS() can be changed during compilation using PPDIR(line).
-***/
-
-/*
-VALUE_TYPE(TYPE(int))
-VALUE_FIXED(VAR(the current line number))
-STDC(1)
-*/
diff --git a/src/nonstd/_PREDEF/__STDC_HOSTED__.c b/src/nonstd/_PREDEF/__STDC_HOSTED__.c
deleted file mode 100644
index 48fe28b7..00000000
--- a/src/nonstd/_PREDEF/__STDC_HOSTED__.c
+++ /dev/null
@@ -1,10 +0,0 @@
-#define __STDC_HOSTED__ /** hosted or free-standing implementation **/
-
-/***
-is defined to the integer constant CONST(1) if the implementation
-is hosted, CONST(0) otherwise.
-***/
-
-/*
-STDC(199901)
-*/
diff --git a/src/nonstd/_PREDEF/__STDC_IEC_559_COMPLEX__.c b/src/nonstd/_PREDEF/__STDC_IEC_559_COMPLEX__.c
deleted file mode 100644
index a8d1f810..00000000
--- a/src/nonstd/_PREDEF/__STDC_IEC_559_COMPLEX__.c
+++ /dev/null
@@ -1,10 +0,0 @@
-#define __STDC_IEC_559_COMPLEX__ /** IEC 60559 complex arithmetic **/
-
-/***
-is defined to CONST(1) if the implementation conforms to Annex G
-of ISO/IEC 9899 (IEC 60559 complex arithmetic).
-***/
-
-/*
-STDC(199901)
-*/
diff --git a/src/nonstd/_PREDEF/__STDC_IEC_559__.c b/src/nonstd/_PREDEF/__STDC_IEC_559__.c
deleted file mode 100644
index bdc441c4..00000000
--- a/src/nonstd/_PREDEF/__STDC_IEC_559__.c
+++ /dev/null
@@ -1,10 +0,0 @@
-#define __STDC_IEC_559__ /** IEC 60559 floating-point arithmetic **/
-
-/***
-is defined to CONST(1) if the implementation conforms to Annex G
-of ISO/IEC 9899 (IEC 60559 floating-point arithmetic).
-***/
-
-/*
-STDC(199901)
-*/
diff --git a/src/nonstd/_PREDEF/__STDC_ISO_10646__.c b/src/nonstd/_PREDEF/__STDC_ISO_10646__.c
deleted file mode 100644
index 3379c855..00000000
--- a/src/nonstd/_PREDEF/__STDC_ISO_10646__.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#define __STDC_ISO_10646__ /** supported UCS version **/
-
-/***
-is defined if TYPE(wchar_t) represents characters encoded
-in conformance with ISO/IEC 10646. In this case, THIS() is
-defined as an integer CONST(yyyymmL), where CONST(yyyy)
-represents the year and CONST(mm) the month of the supported
-version of ISO/IEC 10646.
-***/
-
-/*
-STDC(199901)
-*/
diff --git a/src/nonstd/_PREDEF/__STDC_VERSION__.c b/src/nonstd/_PREDEF/__STDC_VERSION__.c
deleted file mode 100644
index 56a23d90..00000000
--- a/src/nonstd/_PREDEF/__STDC_VERSION__.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#define __STDC_VERSION__ /** supported C standard **/
-
-/***
-declares the supported version of ISO/IEC 9899. If THIS() is not defined,
-the implementation only supports ISO/IEC 9899:1990, without AMD1.
-***/
-
-/*
-VALUE_SELECT(`199409L', `ISO/IEC 9899:1990 AMD1')
-VALUE_SELECT(`199901L', `ISO/IEC 9899:1999')
-VALUE_SELECT(`201112L', `ISO/IEC 9899:2011')
-STDC(199409)
-*/
diff --git a/src/nonstd/_PREDEF/__STDC__.c b/src/nonstd/_PREDEF/__STDC__.c
deleted file mode 100644
index 5bcfe7aa..00000000
--- a/src/nonstd/_PREDEF/__STDC__.c
+++ /dev/null
@@ -1,14 +0,0 @@
-#define __STDC__ (1)
-
-/** standard C support **/
-
-/***
-is automatically defined by the compiler to indicate that it supports
-some version of ISO/IEC 9899.
-***/
-
-/*
-VALUE_TYPE(TYPE(int))
-VALUE_FIXED(1)
-STDC(1)
-*/
diff --git a/src/nonstd/_PREDEF/__TIME__.c b/src/nonstd/_PREDEF/__TIME__.c
deleted file mode 100644
index 472e42c0..00000000
--- a/src/nonstd/_PREDEF/__TIME__.c
+++ /dev/null
@@ -1,12 +0,0 @@
-#define __TIME__ /** time of compilation **/
-
-/***
-is automatically defined by the compiler as the time of compilation
-in the format DEFINITION("hh:mm:ss").
-***/
-
-/*
-VALUE_TYPE(string literal)
-VALUE_FIXED(VAR("time of compilation"))
-STDC(1)
-*/