FreeBSD 9 fix.

This commit is contained in:
JoelKatz
2013-05-02 13:10:30 -07:00
parent 407a43aea9
commit 744b2ef51e

View File

@@ -23260,6 +23260,11 @@ static int posixFchown(int fd, uid_t uid, gid_t gid){
/* Forward reference */
static int openDirectory(const char*, int*);
/* Fix for FreeBSD 9 */
#ifndef WIN32
int fchmod(int, mode_t);
#endif
/*
** Many system calls are accessed through pointer-to-functions so that
** they may be overridden at runtime to facilitate fault injection during