mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
740a2ec0ee
messages with Japanese, colored and messages are separated from program (you can make another message version of rogue). PR: ports/19962 Submitted by: Yoshihiko Sarumaru <mistral@imasy.or.jp>
16 lines
363 B
Plaintext
16 lines
363 B
Plaintext
--- machdep.c.orig Mon Sep 14 14:40:12 1992
|
|
+++ machdep.c Fri Dec 4 00:22:26 1998
|
|
@@ -397,9 +397,9 @@
|
|
md_heed_signals()
|
|
{
|
|
#ifdef UNIX
|
|
- signal(SIGINT, onintr);
|
|
- signal(SIGQUIT, byebye);
|
|
- signal(SIGHUP, error_save);
|
|
+ signal(SIGINT, (void *)onintr);
|
|
+ signal(SIGQUIT, (void *)byebye);
|
|
+ signal(SIGHUP, (void *)error_save);
|
|
#endif /* UNIX */
|
|
|
|
#ifdef HUMAN
|