summaryrefslogtreecommitdiff
path: root/src/time/getdate.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2024-01-30 15:58:39 -0500
committerJakob Kaivo <jkk@ung.org>2024-01-30 15:58:39 -0500
commit178bc0e627d6fa3be9d18d40ba8828604ce71134 (patch)
treee96dcbaa6500450c6c7b0d2ac43d043060ab2346 /src/time/getdate.c
parentbafccb2f57ac1a1852be2d6aafe33cf02d1630c1 (diff)
update standards and safety checks
Diffstat (limited to 'src/time/getdate.c')
-rw-r--r--src/time/getdate.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/time/getdate.c b/src/time/getdate.c
index a181326f..7840b2ef 100644
--- a/src/time/getdate.c
+++ b/src/time/getdate.c
@@ -1,15 +1,12 @@
-#if 0
-
#include <time.h>
+#include "_safety.h"
struct tm *getdate(const char *string)
{
+ SIGNAL_SAFE(0);
return NULL;
}
/*
XOPEN(400)
*/
-
-
-#endif