summaryrefslogtreecommitdiff
path: root/src/time
diff options
context:
space:
mode:
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 **/