summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-04-14 07:04:11 +0200
committerNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-09-10 18:49:58 +1000
commitbebec4ad42af0fc1ead5291769b19d12ffa0a514 (patch)
treeefe91de8a6c68c78eb1d2d5081ae120219798dfc /include
parent8677ef15d85c1e0b713c4f97979c696580bcc4f7 (diff)
downloadbusybox-w32-bebec4ad42af0fc1ead5291769b19d12ffa0a514.tar.gz
busybox-w32-bebec4ad42af0fc1ead5291769b19d12ffa0a514.tar.bz2
busybox-w32-bebec4ad42af0fc1ead5291769b19d12ffa0a514.zip
win32: add fcntl()
Diffstat (limited to 'include')
-rw-r--r--include/mingw.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mingw.h b/include/mingw.h
index 70b679674..d41580da7 100644
--- a/include/mingw.h
+++ b/include/mingw.h
@@ -252,7 +252,7 @@ IMPL(getegid,int,1,void);
252IMPL(geteuid,int,1,void); 252IMPL(geteuid,int,1,void);
253NOIMPL(getsid,pid_t pid UNUSED_PARAM); 253NOIMPL(getsid,pid_t pid UNUSED_PARAM);
254IMPL(getuid,int,1,void); 254IMPL(getuid,int,1,void);
255NOIMPL(fcntl,int fd UNUSED_PARAM, int cmd UNUSED_PARAM, ...); 255int fcntl(int fd, int cmd, ...);
256#define fork() -1 256#define fork() -1
257IMPL(fsync,int,0,int fd UNUSED_PARAM); 257IMPL(fsync,int,0,int fd UNUSED_PARAM);
258NOIMPL(kill,pid_t pid UNUSED_PARAM, int sig UNUSED_PARAM); 258NOIMPL(kill,pid_t pid UNUSED_PARAM, int sig UNUSED_PARAM);