[Kde-cygwin-cvs] CVS: tools/profiler profiler.cpp,1.27,1.28
Status: Inactive
Brought to you by:
habacker
From: Ralf H. <hab...@us...> - 2005-10-14 13:06:26
|
Update of /cvsroot/kde-cygwin/tools/profiler In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28364 Modified Files: profiler.cpp Log Message: added required unistd.h Index: profiler.cpp =================================================================== RCS file: /cvsroot/kde-cygwin/tools/profiler/profiler.cpp,v retrieving revision 1.27 retrieving revision 1.28 diff -u -r1.27 -r1.28 --- profiler.cpp 14 Oct 2005 12:59:30 -0000 1.27 +++ profiler.cpp 14 Oct 2005 13:05:57 -0000 1.28 @@ -37,7 +37,14 @@ #include <string.h> #include <stdlib.h> #include <limits.h> + +#ifdef HAVE_PROCESS_H #include <process.h> +#endif + +#ifdef HAVE_UNISTD_H +#include <unistd.h> +#endif #include "profiler.h" |