Summary: flock() expects sys/file.h which on many platforms
is getting included as a side-effect, but on at least one
this isn't the case.
Add the explicit include to fix builds on those platforms.
Closes #232
Facebook
Unrelated runtime failures.
Reviewed By: @JoelMarcey
Differential Revision:
D2196306
#include <fcntl.h>
#include <unistd.h>
+#include <sys/file.h>
#include <folly/Exception.h>
#include <folly/FileUtil.h>