Include unistd.h for gcc 4.7

In gcc 4.7, some includes were removed. This fixes the build.

Signed-off-by: Andrew Ayer <agwa@andrewayer.name>
This commit is contained in:
Linus G Thiel
2013-02-06 23:44:46 +01:00
committed by Andrew Ayer
parent 3680884767
commit 60d96ecf80

View File

@@ -22,6 +22,7 @@
#include "util.hpp"
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <stdint.h>
#include <algorithm>
#include <string>