summaryrefslogtreecommitdiff
path: root/src/time
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2020-08-12 11:02:56 -0400
committerJakob Kaivo <jkk@ung.org>2020-08-12 11:02:56 -0400
commitecd4d00f1bdf184163cc44ed8261d9f11ca9aae0 (patch)
tree7148339b74cfd5f453be629843e4647b8ed3e7a2 /src/time
parentc37709cb45a4dac2c9c8ffb0fdae2361e2ead7de (diff)
remove all generated nonstd/ headers
Diffstat (limited to 'src/time')
-rw-r--r--src/time/gmtime.c2
-rw-r--r--src/time/localtime.c2
-rw-r--r--src/time/strftime.c5
3 files changed, 5 insertions, 4 deletions
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 <time.h>
-#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 <time.h>
-#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 <time.h>
#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 **/