diff options
-rw-r--r-- | cmdedit.c | 4 | ||||
-rw-r--r-- | shell/cmdedit.c | 4 |
2 files changed, 8 insertions, 0 deletions
@@ -164,6 +164,10 @@ static int my_gid; #endif /* BB_FEATURE_COMMAND_TAB_COMPLETION */ +/* It seems that libc5 doesn't know what a sighandler_t is... */ +#if (__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1) +typedef void (*sighandler_t) (int); +#endif static void cmdedit_setwidth(int w, int redraw_flg); diff --git a/shell/cmdedit.c b/shell/cmdedit.c index 6386ea0..16ec2f8 100644 --- a/shell/cmdedit.c +++ b/shell/cmdedit.c @@ -164,6 +164,10 @@ static int my_gid; #endif /* BB_FEATURE_COMMAND_TAB_COMPLETION */ +/* It seems that libc5 doesn't know what a sighandler_t is... */ +#if (__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1) +typedef void (*sighandler_t) (int); +#endif static void cmdedit_setwidth(int w, int redraw_flg); |