]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
process.h: include stdbool.h
authorNick Mathewson <nickm@torproject.org>
Mon, 16 Dec 2019 18:37:49 +0000 (13:37 -0500)
committerNick Mathewson <nickm@torproject.org>
Thu, 9 Jan 2020 12:30:35 +0000 (07:30 -0500)
We use bool, so we should include stdbool.

src/lib/process/process.h

index d0a66c490a6e1b07b16b367bb15a04d9f7d1aade..7ab59fb26a86956ed72fe720a8d75af8d1405a18 100644 (file)
@@ -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)