Commit cd9fb393 authored by Harris Hancock's avatar Harris Hancock

Include process.h on Windows for _exit

Fixes a recently introduced build error on Windows.

Microsoft's docs say to include either <process.h> or <stdlib.h>. I
arbitrarily chose process.h.
parent e168c9ad
......@@ -24,6 +24,8 @@
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
#else
#include <process.h>
#endif
namespace kj {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment