diff options
| author | Jakob Kaivo <jkk@ung.org> | 2020-08-16 20:00:37 -0400 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2020-08-16 20:00:37 -0400 |
| commit | 73da506ee04ec490c5959b45c216a1f8508bec5b (patch) | |
| tree | f356a994826be58341695dca611c3f324b511413 /src/time | |
| parent | d82a95f6e907652151f658d140fcd47a26b70976 (diff) | |
consistently use <> for standardized headers
Diffstat (limited to 'src/time')
| -rw-r--r-- | src/time/asctime_s.c | 4 | ||||
| -rw-r--r-- | src/time/ctime_s.c | 2 | ||||
| -rw-r--r-- | src/time/gmtime_s.c | 2 | ||||
| -rw-r--r-- | src/time/localtime_s.c | 2 |
4 files changed, 5 insertions, 5 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) diff --git a/src/time/ctime_s.c b/src/time/ctime_s.c index 8813247c..a8b8e7f3 100644 --- a/src/time/ctime_s.c +++ b/src/time/ctime_s.c @@ -1,4 +1,4 @@ -#include "time.h" +#include <time.h> /** convert arithmetic time to string **/ errno_t ctime_s(char *s, rsize_t maxsize, const time_t *timer) diff --git a/src/time/gmtime_s.c b/src/time/gmtime_s.c index 1629a651..30464211 100644 --- a/src/time/gmtime_s.c +++ b/src/time/gmtime_s.c @@ -1,4 +1,4 @@ -#include "time.h" +#include <time.h> /** convert arithmetic time to borken down time **/ struct tm * gmtime_s(const time_t * restrict timer, struct tm * restrict result) diff --git a/src/time/localtime_s.c b/src/time/localtime_s.c index f8ad731a..8a8797fb 100644 --- a/src/time/localtime_s.c +++ b/src/time/localtime_s.c @@ -1,4 +1,4 @@ -#include "time.h" +#include <time.h> /** convert arithmetic time to broken down time **/ struct tm * localtime_s(const time_t * restrict timer, struct tm * restrict result) |
