process.h: include stdbool.h

We use bool, so we should include stdbool.
This commit is contained in:
Nick Mathewson 2019-12-16 13:37:49 -05:00
parent ca9d605fa7
commit 3ad518cd97

View 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)