From ecd4d00f1bdf184163cc44ed8261d9f11ca9aae0 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Wed, 12 Aug 2020 11:02:56 -0400 Subject: remove all generated nonstd/ headers --- src/time/gmtime.c | 2 +- src/time/localtime.c | 2 +- src/time/strftime.c | 5 +++-- 3 files changed, 5 insertions(+), 4 deletions(-) (limited to 'src/time') diff --git a/src/time/gmtime.c b/src/time/gmtime.c index a844d097..a193fb99 100644 --- a/src/time/gmtime.c +++ b/src/time/gmtime.c @@ -1,5 +1,5 @@ #include -#include "nonstd/assert.h" +#include "../_assert.h" # define SEC_PER_MIN (60L) # define MIN_PER_HR (60L) diff --git a/src/time/localtime.c b/src/time/localtime.c index b09f84a5..80ac9bfa 100644 --- a/src/time/localtime.c +++ b/src/time/localtime.c @@ -1,5 +1,5 @@ #include -#include "nonstd/assert.h" +#include "../_assert.h" /** convert arithmetic time to broken down time **/ diff --git a/src/time/strftime.c b/src/time/strftime.c index 9d9f10e1..4d306789 100644 --- a/src/time/strftime.c +++ b/src/time/strftime.c @@ -1,8 +1,9 @@ #include #include "stdio.h" -#include "nonstd/assert.h" +#include "../_assert.h" #include "locale.h" -#include "nonstd/locale.h" +#include "../locale/_locale.h" +#include "../_nonstd.h" /** convert time to a formatted string **/ -- cgit v1.2.1