mirror of
https://github.com/kanjitalk755/macemu.git
synced 2025-09-10 12:27:56 +00:00
Fix fatal() macro
This commit is contained in:
@@ -70,7 +70,7 @@ RCSID("$OpenBSD: sshpty.c,v 1.4 2001/12/19 07:18:56 deraadt Exp $");
|
|||||||
#else /* stubs for BasiliskII */
|
#else /* stubs for BasiliskII */
|
||||||
#define log printf
|
#define log printf
|
||||||
#define error printf
|
#define error printf
|
||||||
#define fatal(x) {printf("Fatal error: %s", x); return 0}
|
#define fatal(x) do { printf("Fatal error: %s", x); return 0; } while(0)
|
||||||
#endif /* not in BasiliskII */
|
#endif /* not in BasiliskII */
|
||||||
|
|
||||||
/* Pty allocated with _getpty gets broken if we do I_PUSH:es to it. */
|
/* Pty allocated with _getpty gets broken if we do I_PUSH:es to it. */
|
||||||
|
Reference in New Issue
Block a user