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
|
||||
#define UNIX_UTIL_H
|
||||
|
||||
// Nothing in this file is needed on WIN32
|
||||
#ifndef _WIN32
|
||||
|
||||
#include "config.h"
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
|
@ -48,5 +52,7 @@ int daemon(int nochdir, int noclose);
|
|||
|
||||
#endif /* HAVE_DAEMON */
|
||||
|
||||
#endif /* _WIN32 */
|
||||
|
||||
#endif /* UNIX_UTIL_H */
|
||||
|
||||
|
|
Loading…
Reference in New Issue