aboutsummaryrefslogtreecommitdiff
path: root/include
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-09-10 18:40:19 +1000
commitb8ba0563f25d5ac40d80718d5d05503c27806765 (patch)
tree94fd1d65df8171582b63db19b58580e2d22936ae /include
parent67129af6419e1e839f2a34811173b27342c8e40d (diff)
downloadbusybox-w32-b8ba0563f25d5ac40d80718d5d05503c27806765.tar.gz
busybox-w32-b8ba0563f25d5ac40d80718d5d05503c27806765.tar.bz2
busybox-w32-b8ba0563f25d5ac40d80718d5d05503c27806765.zip
win32: add link()
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 0ff7f5442..40c11aabf 100644
--- a/include/mingw.h
+++ b/include/mingw.h
@@ -256,7 +256,7 @@ NOIMPL(fcntl,int fd UNUSED_PARAM, int cmd UNUSED_PARAM, ...);
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);
259NOIMPL(link,const char *oldpath UNUSED_PARAM, const char *newpath UNUSED_PARAM); 259int link(const char *oldpath, const char *newpath);
260NOIMPL(mknod,const char *name UNUSED_PARAM, mode_t mode UNUSED_PARAM, dev_t device UNUSED_PARAM); 260NOIMPL(mknod,const char *name UNUSED_PARAM, mode_t mode UNUSED_PARAM, dev_t device UNUSED_PARAM);
261int pipe(int filedes[2]); 261int pipe(int filedes[2]);
262NOIMPL(readlink,const char *path UNUSED_PARAM, char *buf UNUSED_PARAM, size_t bufsiz UNUSED_PARAM); 262NOIMPL(readlink,const char *path UNUSED_PARAM, char *buf UNUSED_PARAM, size_t bufsiz UNUSED_PARAM);