sync code with last fixes and improvements from OpenBSD

This commit is contained in:
purplerain 2023-06-07 21:20:56 +00:00
parent 4b78db449c
commit bf0676207f
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
2406 changed files with 6353 additions and 434004 deletions

View file

@ -1,4 +1,4 @@
/* $Id: test-tak.c,v 1.4 2023/04/27 08:37:53 beck Exp $ */
/* $Id: test-tak.c,v 1.5 2023/05/30 12:14:48 claudio Exp $ */
/*
* Copyright (c) 2022 Job Snijders <job@fastly.com>
* Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
@ -35,8 +35,6 @@ int outformats;
int verbose;
int filemode;
int64_t evaluation_time;
int
main(int argc, char *argv[])
{
@ -98,3 +96,9 @@ main(int argc, char *argv[])
printf("OK\n");
return 0;
}
time_t
get_current_time(void)
{
return time(NULL);
}