summaryrefslogtreecommitdiff
path: root/src/time/asctime_s.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2020-08-16 20:00:37 -0400
committerJakob Kaivo <jkk@ung.org>2020-08-16 20:00:37 -0400
commit73da506ee04ec490c5959b45c216a1f8508bec5b (patch)
treef356a994826be58341695dca611c3f324b511413 /src/time/asctime_s.c
parentd82a95f6e907652151f658d140fcd47a26b70976 (diff)
consistently use <> for standardized headers
Diffstat (limited to 'src/time/asctime_s.c')
-rw-r--r--src/time/asctime_s.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/time/asctime_s.c b/src/time/asctime_s.c
index 69f9fd33..87985906 100644
--- a/src/time/asctime_s.c
+++ b/src/time/asctime_s.c
@@ -1,5 +1,5 @@
-#include "time.h"
-#include "stdio.h"
+#include <time.h>
+#include <stdio.h>
/** convert broken down time to string **/
errno_t asctime_s(char *s, rsize_t maxsize, const struct tm * timeptr)