mirror of https://github.com/BOINC/boinc.git
Fix of prior checkin for Win32 build
svn path=/trunk/boinc/; revision=14997
This commit is contained in:
parent
51e24737bd
commit
463050aa21
|
@ -20,8 +20,12 @@
|
||||||
#ifndef UNIX_UTIL_H
|
#ifndef UNIX_UTIL_H
|
||||||
#define UNIX_UTIL_H
|
#define UNIX_UTIL_H
|
||||||
|
|
||||||
|
// Nothing in this file is needed on WIN32
|
||||||
|
#ifndef _WIN32
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
#include <cstdio>
|
#include <cstdio>
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
|
@ -48,5 +52,7 @@ int daemon(int nochdir, int noclose);
|
||||||
|
|
||||||
#endif /* HAVE_DAEMON */
|
#endif /* HAVE_DAEMON */
|
||||||
|
|
||||||
|
#endif /* _WIN32 */
|
||||||
|
|
||||||
#endif /* UNIX_UTIL_H */
|
#endif /* UNIX_UTIL_H */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue