commit 3ad518cd97e0a211dc2a3a9d759d8f85d4896d52
parent ca9d605fa7c72083b0ef721b4b555de80a5795d8
Author: Nick Mathewson <nickm@torproject.org>
Date: Mon, 16 Dec 2019 13:37:49 -0500
process.h: include stdbool.h
We use bool, so we should include stdbool.
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/src/lib/process/process.h b/src/lib/process/process.h
@@ -15,6 +15,8 @@
#include "lib/malloc/malloc.h"
#include "lib/string/printf.h"
+#include <stdbool.h>
+
/** Maximum number of bytes to write to a process' stdin. */
#define PROCESS_MAX_WRITE (1024)