From 95b520110dc1ee6ee670817fdd6312a8565cf34c Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 2 Aug 2001 09:52:40 +0000 Subject: Teach libc5 what a sighandler_t is -Erik --- shell/cmdedit.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'shell') 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); -- cgit v1.2.3