Commit ccc673a6 authored by Rosen Penev's avatar Rosen Penev Committed by Facebook Github Bot

folly: Don't include wait.h (#1183)

Summary:
wait.h is a GNU header. The POSIX one is sys/wait.h. Fixes musl warning:

warning redirecting incorrect #include <wait.h> to <sys/wait.h>
Pull Request resolved: https://github.com/facebook/folly/pull/1183

Reviewed By: wez

Differential Revision: D16097571

Pulled By: yfeldblum

fbshipit-source-id: 751e4929bc9f00c99c160be9a7dd904e57ad40ce
parent 032369f9
......@@ -94,12 +94,7 @@
#include <signal.h>
#include <sys/types.h>
#if __APPLE__
#include <sys/wait.h>
#else
#include <wait.h>
#endif
#include <exception>
#include <string>
......
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