conserver: Add missing #include <time.h> in various files.

Gcc complained about undefined functions from time.h.
This commit is contained in:
Jörg Sommer 2024-08-26 19:13:18 +02:00
parent 9d2e25ed67
commit 83c81d2bfc
4 changed files with 4 additions and 0 deletions

View File

@ -47,6 +47,7 @@
#include <access.h>
#include <readcfg.h>
#include <main.h>
#include <time.h>
BAUD baud[] = {

View File

@ -7,6 +7,7 @@
#include <compat.h>
#include <cutil.h>
#include <time.h>
#include <version.h>
#include <net/if.h>

View File

@ -67,6 +67,7 @@
#include <main.h>
#include <version.h>
#include <stdio.h>
#include <time.h>
#if HAVE_PAM
# include <security/pam_appl.h>

View File

@ -33,6 +33,7 @@
#include <access.h>
#include <readcfg.h>
#include <main.h>
#include <time.h>
/***** external things *****/
NAMES *userList = (NAMES *)0;