mirror of
https://git.freebsd.org/ports.git
synced 2025-06-10 07:10:32 -04:00
Fix build on current by #including the relevant headers instead of trying to guess declarations.
20 lines
530 B
Text
20 lines
530 B
Text
--- misc.c.orig Fri Mar 5 21:40:11 1999
|
||
+++ misc.c Tue Sep 26 17:20:07 2000
|
||
@@ -106,7 +106,7 @@
|
||
char temp[2];
|
||
temp[0]=7;
|
||
temp[1]=0;
|
||
- write(1, temp, 2);
|
||
+ write(1, temp, 1);
|
||
}
|
||
|
||
|
||
@@ -176,7 +176,7 @@
|
||
}
|
||
ses=NULL;
|
||
if (is_split)
|
||
- write(1, "c", 3);
|
||
+ write(1, "c", 2);
|
||
tintin_puts2("TINTIN suffers from bloodlack, and the lack of a beating heart...", ses);
|
||
tintin_puts2("TINTIN is dead! R.I.P.", ses);
|
||
tintin_puts2("Your blood freezes as you hear TINTIN's death cry.", ses);
|