FreeBSD9 fix

This commit is contained in:
JoelKatz
2013-06-11 18:33:13 -07:00
parent dee5c70cd5
commit fe96c47b43

View File

@@ -23442,6 +23442,11 @@ static int posixFchown(int fd, uid_t uid, gid_t gid){
/* Forward reference */ /* Forward reference */
static int openDirectory(const char*, int*); 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 ** Many system calls are accessed through pointer-to-functions so that
** they may be overridden at runtime to facilitate fault injection during ** they may be overridden at runtime to facilitate fault injection during