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/stdlib/constraint_handler_t.c | 5 ----- src/stdlib/constraint_handler_t.h | 5 +++++ src/stdlib/lldiv_t.c | 10 ---------- src/stdlib/lldiv_t.h | 10 ++++++++++ 4 files changed, 15 insertions(+), 15 deletions(-) delete mode 100644 src/stdlib/constraint_handler_t.c create mode 100644 src/stdlib/constraint_handler_t.h delete mode 100644 src/stdlib/lldiv_t.c create mode 100644 src/stdlib/lldiv_t.h (limited to 'src/stdlib') diff --git a/src/stdlib/constraint_handler_t.c b/src/stdlib/constraint_handler_t.c deleted file mode 100644 index 6c109471..00000000 --- a/src/stdlib/constraint_handler_t.c +++ /dev/null @@ -1,5 +0,0 @@ -typedef void (*constraint_handler_t)(const char * restrict msg, void * restrict ptr, errno_t error); - -/* -CEXT1(201112) -*/ diff --git a/src/stdlib/constraint_handler_t.h b/src/stdlib/constraint_handler_t.h new file mode 100644 index 00000000..6c109471 --- /dev/null +++ b/src/stdlib/constraint_handler_t.h @@ -0,0 +1,5 @@ +typedef void (*constraint_handler_t)(const char * restrict msg, void * restrict ptr, errno_t error); + +/* +CEXT1(201112) +*/ diff --git a/src/stdlib/lldiv_t.c b/src/stdlib/lldiv_t.c deleted file mode 100644 index e7e72e6b..00000000 --- a/src/stdlib/lldiv_t.c +++ /dev/null @@ -1,10 +0,0 @@ -#include - -typedef struct { - long long int quot; - long long int rem; -} lldiv_t; - -/* -STDC(199901) -*/ diff --git a/src/stdlib/lldiv_t.h b/src/stdlib/lldiv_t.h new file mode 100644 index 00000000..e7e72e6b --- /dev/null +++ b/src/stdlib/lldiv_t.h @@ -0,0 +1,10 @@ +#include + +typedef struct { + long long int quot; + long long int rem; +} lldiv_t; + +/* +STDC(199901) +*/ -- cgit v1.2.1