Public release now works with g++4.7. In 4.7, unistd.h is no longer imported by default

git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@3918 19bc5d8c-e614-43d4-8b26-e1612bc8e597
This commit is contained in:
kurtis.heimerl 2012-07-22 05:09:00 +00:00
parent 711fdf6f81
commit 9123274be9
2 changed files with 2 additions and 1 deletions

View File

@ -29,6 +29,7 @@
#include <pthread.h>
#include <iostream>
#include <assert.h>
#include <unistd.h>
class Mutex;

View File

@ -29,7 +29,7 @@
#include <stdint.h>
#include "sys/time.h"
#include <iostream>
#include <unistd.h>
/** A wrapper on usleep to sleep for milliseconds. */