Add missing includes for unistd.h

This commit is contained in:
Jonathan Moore Liles 2012-04-13 15:04:00 -07:00
parent 5e63b25504
commit e662a7623b
2 changed files with 3 additions and 0 deletions

View File

@ -29,6 +29,7 @@
#include <sys/stat.h> #include <sys/stat.h>
#include <sys/fcntl.h> #include <sys/fcntl.h>
#include <errno.h> #include <errno.h>
#include <unistd.h>
#include "Loggable.H" #include "Loggable.H"
#include "Project.H" #include "Project.H"

View File

@ -27,6 +27,8 @@
#include "Thread.H" #include "Thread.H"
#include <unistd.h>
/** Initiate recording for all armed tracks */ /** Initiate recording for all armed tracks */
bool bool
Timeline::record ( void ) Timeline::record ( void )