aboutsummaryrefslogtreecommitdiff
path: root/include/mingw.h
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-04-14 06:59:24 +0200
committerNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-04-20 19:14:04 +0200
commitfa7ad8d569d33a54c02c9db9160f5e17f8438566 (patch)
tree3f250b4e5792e465468c9be9852eb3bae3a5e4f4 /include/mingw.h
parent86167803e83ffb2b799876269bb4439192e964b3 (diff)
downloadbusybox-w32-fa7ad8d569d33a54c02c9db9160f5e17f8438566.tar.gz
busybox-w32-fa7ad8d569d33a54c02c9db9160f5e17f8438566.tar.bz2
busybox-w32-fa7ad8d569d33a54c02c9db9160f5e17f8438566.zip
win32: add link()
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Diffstat (limited to 'include/mingw.h')
-rw-r--r--include/mingw.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mingw.h b/include/mingw.h
index c26e16bc7..963a87104 100644
--- a/include/mingw.h
+++ b/include/mingw.h
@@ -258,7 +258,7 @@ NOIMPL(fcntl,int fd UNUSED_PARAM, int cmd UNUSED_PARAM, ...);
258#define fork() -1 258#define fork() -1
259IMPL(fsync,int,0,int fd UNUSED_PARAM); 259IMPL(fsync,int,0,int fd UNUSED_PARAM);
260NOIMPL(kill,pid_t pid UNUSED_PARAM, int sig UNUSED_PARAM); 260NOIMPL(kill,pid_t pid UNUSED_PARAM, int sig UNUSED_PARAM);
261NOIMPL(link,const char *oldpath UNUSED_PARAM, const char *newpath UNUSED_PARAM); 261int link(const char *oldpath, const char *newpath);
262NOIMPL(mknod,const char *name UNUSED_PARAM, mode_t mode UNUSED_PARAM, dev_t device UNUSED_PARAM); 262NOIMPL(mknod,const char *name UNUSED_PARAM, mode_t mode UNUSED_PARAM, dev_t device UNUSED_PARAM);
263int pipe(int filedes[2]); 263int pipe(int filedes[2]);
264NOIMPL(readlink,const char *path UNUSED_PARAM, char *buf UNUSED_PARAM, size_t bufsiz UNUSED_PARAM); 264NOIMPL(readlink,const char *path UNUSED_PARAM, char *buf UNUSED_PARAM, size_t bufsiz UNUSED_PARAM);