From 24a60ffba1893a3506a6ed15fd4b26479d966cf3 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Sun, 16 Aug 2020 16:31:15 -0400 Subject: rename non-compiled files to *.h --- src/sys/timeb/struct_timeb.c | 12 ------------ src/sys/timeb/struct_timeb.h | 12 ++++++++++++ 2 files changed, 12 insertions(+), 12 deletions(-) delete mode 100644 src/sys/timeb/struct_timeb.c create mode 100644 src/sys/timeb/struct_timeb.h (limited to 'src/sys/timeb') diff --git a/src/sys/timeb/struct_timeb.c b/src/sys/timeb/struct_timeb.c deleted file mode 100644 index 90ba63c3..00000000 --- a/src/sys/timeb/struct_timeb.c +++ /dev/null @@ -1,12 +0,0 @@ -#include - -struct timeb { - time_t time; - unsigned short millitm; - short timezone; - short dstflag; -}; - -/* -XOPEN(400,700) -*/ diff --git a/src/sys/timeb/struct_timeb.h b/src/sys/timeb/struct_timeb.h new file mode 100644 index 00000000..90ba63c3 --- /dev/null +++ b/src/sys/timeb/struct_timeb.h @@ -0,0 +1,12 @@ +#include + +struct timeb { + time_t time; + unsigned short millitm; + short timezone; + short dstflag; +}; + +/* +XOPEN(400,700) +*/ -- cgit v1.2.1