--- freem/src/sighnd.c 2025/03/24 00:38:40 1.5 +++ freem/src/sighnd.c 2025/03/24 04:15:25 1.6 @@ -1,5 +1,5 @@ /* - * $Id: sighnd.c,v 1.5 2025/03/24 00:38:40 snw Exp $ + * $Id: sighnd.c,v 1.6 2025/03/24 04:15:25 snw Exp $ * FreeM signal handlers * * @@ -24,6 +24,9 @@ * along with FreeM. If not, see . * * $Log: sighnd.c,v $ + * Revision 1.6 2025/03/24 04:15:25 snw + * Create dummy onwinch signal handler for OS/2 + * * Revision 1.5 2025/03/24 00:38:40 snw * Fix termios junk in sighnd.c * @@ -139,6 +142,13 @@ void onwinch (void) return; } +#else +void onwinch (void) +{ + sig_attach (SIGWINCH, &onwinch); + + return; +} #endif void onintr (void)