aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-08-02 09:52:40 +0000
committerEric Andersen <andersen@codepoet.org>2001-08-02 09:52:40 +0000
commit95b520110dc1ee6ee670817fdd6312a8565cf34c (patch)
tree762e3eb43a849bb8ac37537c8943fe2f8148fb4f /shell
parentdeba6dea0340465af76624f9ef3a0bbe28130d8a (diff)
downloadbusybox-95b520110dc1ee6ee670817fdd6312a8565cf34c.tar.gz
Teach libc5 what a sighandler_t is
-Erik
Diffstat (limited to 'shell')
-rw-r--r--shell/cmdedit.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/shell/cmdedit.c b/shell/cmdedit.c
index 6386ea042..16ec2f823 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);