From 661f59838235815b5073a0ef95f410003639519e Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Sun, 16 Aug 2020 16:14:04 -0400 Subject: rename non-compiled files to *.h --- src/stdbool/__bool_true_false_are_defined.c | 15 --------------- src/stdbool/__bool_true_false_are_defined.h | 15 +++++++++++++++ src/stdbool/bool.c | 14 -------------- src/stdbool/bool.h | 14 ++++++++++++++ src/stdbool/false.c | 14 -------------- src/stdbool/false.h | 14 ++++++++++++++ src/stdbool/true.c | 14 -------------- src/stdbool/true.h | 14 ++++++++++++++ 8 files changed, 57 insertions(+), 57 deletions(-) delete mode 100644 src/stdbool/__bool_true_false_are_defined.c create mode 100644 src/stdbool/__bool_true_false_are_defined.h delete mode 100644 src/stdbool/bool.c create mode 100644 src/stdbool/bool.h delete mode 100644 src/stdbool/false.c create mode 100644 src/stdbool/false.h delete mode 100644 src/stdbool/true.c create mode 100644 src/stdbool/true.h (limited to 'src/stdbool') diff --git a/src/stdbool/__bool_true_false_are_defined.c b/src/stdbool/__bool_true_false_are_defined.c deleted file mode 100644 index a311586b..00000000 --- a/src/stdbool/__bool_true_false_are_defined.c +++ /dev/null @@ -1,15 +0,0 @@ -#include - -/** indicate inclusion of **/ - -#define __bool_true_false_are_defined (1) - -/*** -is set to indicate that the standard header HEADER(stdbool.h) has been included, -and the definitions of MACRO(bool), MACRO(true), and MACRO(false) are available. -***/ - -/* -VALUE_FIXED(1) -STDC(199901) -*/ diff --git a/src/stdbool/__bool_true_false_are_defined.h b/src/stdbool/__bool_true_false_are_defined.h new file mode 100644 index 00000000..a311586b --- /dev/null +++ b/src/stdbool/__bool_true_false_are_defined.h @@ -0,0 +1,15 @@ +#include + +/** indicate inclusion of **/ + +#define __bool_true_false_are_defined (1) + +/*** +is set to indicate that the standard header HEADER(stdbool.h) has been included, +and the definitions of MACRO(bool), MACRO(true), and MACRO(false) are available. +***/ + +/* +VALUE_FIXED(1) +STDC(199901) +*/ diff --git a/src/stdbool/bool.c b/src/stdbool/bool.c deleted file mode 100644 index 9f8bc863..00000000 --- a/src/stdbool/bool.c +++ /dev/null @@ -1,14 +0,0 @@ -#include - -/** boolean type **/ - -#define bool _Bool - -/*** -provides an alternative spelling for the type TYPE(_Bool). -***/ - -/* -VALUE_FIXED(TYPE(_Bool)) -STDC(199901) -*/ diff --git a/src/stdbool/bool.h b/src/stdbool/bool.h new file mode 100644 index 00000000..9f8bc863 --- /dev/null +++ b/src/stdbool/bool.h @@ -0,0 +1,14 @@ +#include + +/** boolean type **/ + +#define bool _Bool + +/*** +provides an alternative spelling for the type TYPE(_Bool). +***/ + +/* +VALUE_FIXED(TYPE(_Bool)) +STDC(199901) +*/ diff --git a/src/stdbool/false.c b/src/stdbool/false.c deleted file mode 100644 index 0259936d..00000000 --- a/src/stdbool/false.c +++ /dev/null @@ -1,14 +0,0 @@ -#include - -/** boolean false constant **/ - -#define false (0) - -/*** -is the false value for the type TYPE(_Bool). -***/ - -/* -VALUE_FIXED(0) -STDC(199901) -*/ diff --git a/src/stdbool/false.h b/src/stdbool/false.h new file mode 100644 index 00000000..0259936d --- /dev/null +++ b/src/stdbool/false.h @@ -0,0 +1,14 @@ +#include + +/** boolean false constant **/ + +#define false (0) + +/*** +is the false value for the type TYPE(_Bool). +***/ + +/* +VALUE_FIXED(0) +STDC(199901) +*/ diff --git a/src/stdbool/true.c b/src/stdbool/true.c deleted file mode 100644 index b6288b05..00000000 --- a/src/stdbool/true.c +++ /dev/null @@ -1,14 +0,0 @@ -#include - -/** boolean true constant **/ - -#define true (1) - -/*** -is the boolean true value for the type TYPE(_Bool). -***/ - -/* -VALUE_FIXED(1) -STDC(199901) -*/ diff --git a/src/stdbool/true.h b/src/stdbool/true.h new file mode 100644 index 00000000..b6288b05 --- /dev/null +++ b/src/stdbool/true.h @@ -0,0 +1,14 @@ +#include + +/** boolean true constant **/ + +#define true (1) + +/*** +is the boolean true value for the type TYPE(_Bool). +***/ + +/* +VALUE_FIXED(1) +STDC(199901) +*/ -- cgit v1.2.1