aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-04-14 07:00:16 +0200
committerNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-04-20 19:14:05 +0200
commitca46d5097f6124489fbd3d6b45290c2c9b643831 (patch)
tree891a8a054e8e57447a88475e9df18c4dd0835996 /include
parentfda663db764bf427adfd5564a343cac1df388667 (diff)
downloadbusybox-w32-ca46d5097f6124489fbd3d6b45290c2c9b643831.tar.gz
busybox-w32-ca46d5097f6124489fbd3d6b45290c2c9b643831.tar.bz2
busybox-w32-ca46d5097f6124489fbd3d6b45290c2c9b643831.zip
win32: add realpath()
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
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 9267adf7a..404360d29 100644
--- a/include/mingw.h
+++ b/include/mingw.h
@@ -133,7 +133,7 @@ int fdprintf(int fd, const char *format, ...);
133NOIMPL(clearenv,void); 133NOIMPL(clearenv,void);
134IMPL(mingw_getenv,char*,NULL,const char *name UNUSED_PARAM); 134IMPL(mingw_getenv,char*,NULL,const char *name UNUSED_PARAM);
135int mkstemp(char *template); 135int mkstemp(char *template);
136IMPL(realpath,char *,NULL,const char *path UNUSED_PARAM, char *resolved_path UNUSED_PARAM); 136char *realpath(const char *path, char *resolved_path);
137NOIMPL(setenv,const char *name UNUSED_PARAM, const char *value UNUSED_PARAM, int replace UNUSED_PARAM); 137NOIMPL(setenv,const char *name UNUSED_PARAM, const char *value UNUSED_PARAM, int replace UNUSED_PARAM);
138IMPL(unsetenv,void,,const char *env UNUSED_PARAM); 138IMPL(unsetenv,void,,const char *env UNUSED_PARAM);
139 139