We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25518ff commit a04005cCopy full SHA for a04005c
code/logic/sanity.c
@@ -13,6 +13,14 @@
13
* -----------------------------------------------------------------------------
14
*/
15
#include "fossil/pizza/sanity.h"
16
+#define _POSIX_C_SOURCE 200809L
17
+
18
+#include <stdlib.h> // getenv, setenv
19
+#include <time.h> // localtime_r, strftime
20
+#include <sys/time.h> // gettimeofday
21
+#include <signal.h> // kill, SIGTERM
22
+#include <unistd.h> // kill (sometimes needed explicitly)
23
24
#ifdef _WIN32
25
#include <windows.h>
26
#else
0 commit comments