diff options
author | Stefan Sauer <ensonic@google.com> | 2011-11-25 14:38:03 +0100 |
---|---|---|
committer | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2011-12-05 10:52:45 +0700 |
commit | 01cf244509984628c44918e999f0aea6f88662e6 (patch) | |
tree | ed286069060bbcbba38da2aee74600f096032b4e | |
parent | 9b2b8c031578dcc55e3dc3aad2c621d0f48791ea (diff) | |
download | busybox-w32-01cf244509984628c44918e999f0aea6f88662e6.tar.gz busybox-w32-01cf244509984628c44918e999f0aea6f88662e6.tar.bz2 busybox-w32-01cf244509984628c44918e999f0aea6f88662e6.zip |
mingw.h: drop parameters for lchown to chown mapping
This is needed to build coreutils/chown which take a function pointer to chown.
If the define has parameters it won't replace this one.
-rw-r--r-- | include/mingw.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mingw.h b/include/mingw.h index 8927b1362..6fe5d4017 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -327,7 +327,7 @@ NOIMPL(vfork,void); | |||
327 | 327 | ||
328 | #define dup2 mingw_dup2 | 328 | #define dup2 mingw_dup2 |
329 | #define getcwd mingw_getcwd | 329 | #define getcwd mingw_getcwd |
330 | #define lchown(a,b,c) chown(a,b,c) | 330 | #define lchown chown |
331 | #define open mingw_open | 331 | #define open mingw_open |
332 | #define unlink mingw_unlink | 332 | #define unlink mingw_unlink |
333 | 333 | ||