diff options
author | Ron Yorston <rmy@pobox.com> | 2018-11-25 21:29:32 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2018-11-26 09:43:28 +0000 |
commit | 0856f3a689a26c88ff68f250c7ba2d7be7940fbe (patch) | |
tree | d2f3cde7205ee1488d87d301cb28a9425a1eae5a /include/mingw.h | |
parent | 1ae73ffecfa074e345c75dc761931a767c9c9318 (diff) | |
download | busybox-w32-0856f3a689a26c88ff68f250c7ba2d7be7940fbe.tar.gz busybox-w32-0856f3a689a26c88ff68f250c7ba2d7be7940fbe.tar.bz2 busybox-w32-0856f3a689a26c88ff68f250c7ba2d7be7940fbe.zip |
win32: move function redefinitions to mingw.h
The itoa and strrev functions have different prototypes in BusyBox
and WIN32. Move the #defines which handle this to mingw.h, reducing
differences between busybox-w32 and upstream.
Diffstat (limited to 'include/mingw.h')
-rw-r--r-- | include/mingw.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/mingw.h b/include/mingw.h index 7ee9c15cc..025c4e22b 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -419,6 +419,12 @@ DIR *mingw_opendir(const char *path); | |||
419 | #define opendir mingw_opendir | 419 | #define opendir mingw_opendir |
420 | 420 | ||
421 | /* | 421 | /* |
422 | * Functions with different prototypes in BusyBox and WIN32 | ||
423 | */ | ||
424 | #define itoa bb_itoa | ||
425 | #define strrev bb_strrev | ||
426 | |||
427 | /* | ||
422 | * MinGW specific | 428 | * MinGW specific |
423 | */ | 429 | */ |
424 | #define is_dir_sep(c) ((c) == '/' || (c) == '\\') | 430 | #define is_dir_sep(c) ((c) == '/' || (c) == '\\') |