mirror of
https://github.com/sheumann/hush.git
synced 2025-01-03 00:31:16 +00:00
Teach libc5 what a sighandler_t is
-Erik
This commit is contained in:
parent
deba6dea03
commit
95b520110d
@ -164,6 +164,10 @@ static int my_gid;
|
|||||||
|
|
||||||
#endif /* BB_FEATURE_COMMAND_TAB_COMPLETION */
|
#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);
|
static void cmdedit_setwidth(int w, int redraw_flg);
|
||||||
|
|
||||||
|
@ -164,6 +164,10 @@ static int my_gid;
|
|||||||
|
|
||||||
#endif /* BB_FEATURE_COMMAND_TAB_COMPLETION */
|
#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);
|
static void cmdedit_setwidth(int w, int redraw_flg);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user