diff options
author | Glenn Strauss <gstrauss@gluelogic.com> | 2021-04-28 13:18:37 -0400 |
---|---|---|
committer | Glenn Strauss <gstrauss@gluelogic.com> | 2021-04-28 14:08:29 -0400 |
commit | 13ea2d880b14c0a50a777c0ece5f26453483a7de (patch) | |
tree | 02afec5448dff9d4389c74a59c739c5a7cfc5814 /src/server.c | |
parent | a1eba3c89bc26ac8a4deb1dba456bf2f3e3c4a6b (diff) | |
download | lighttpd-git-13ea2d880b14c0a50a777c0ece5f26453483a7de.tar.gz |
[core] consistent inclusion of sys-time.h
Diffstat (limited to 'src/server.c')
-rw-r--r-- | src/server.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/server.c b/src/server.c index 97621635..5d938bc8 100644 --- a/src/server.c +++ b/src/server.c @@ -29,15 +29,14 @@ static const buffer default_server_tag = { CONST_STR_LEN(PACKAGE_DESC)+1, 0 }; #include <sys/types.h> -#include <sys/time.h> #include <sys/stat.h> +#include "sys-time.h" #include <string.h> #include <errno.h> #include <fcntl.h> #include <unistd.h> #include <stdlib.h> -#include <time.h> #include <signal.h> #include <locale.h> |