summaryrefslogtreecommitdiffstats
path: root/src/lib9/tas-PowerMacintosh.c
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2003-11-24 22:39:06 +0000
committerrsc <devnull@localhost>2003-11-24 22:39:06 +0000
commit912fba95e74c7631352bc5007249d75e720bbcdf (patch)
treeb9c86c0c38c71d742ffd3990706f380f8263fd8d /src/lib9/tas-PowerMacintosh.c
parent2db9e4821d8ae4889e63e5bb205b04eccb7af405 (diff)
downloadplan9port-912fba95e74c7631352bc5007249d75e720bbcdf.tar.gz
plan9port-912fba95e74c7631352bc5007249d75e720bbcdf.zip
Changes for Mac OS X. Most important is stack sizes in samterm,
which were completely bogus. (Libthread used to ignore them but not anymore. Maybe we really should ignore them, but that breaks Venti, which needs *really* big stacks.)
Diffstat (limited to 'src/lib9/tas-PowerMacintosh.c')
-rw-r--r--src/lib9/tas-PowerMacintosh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib9/tas-PowerMacintosh.c b/src/lib9/tas-PowerMacintosh.c
index 29928ce0..d7a8610c 100644
--- a/src/lib9/tas-PowerMacintosh.c
+++ b/src/lib9/tas-PowerMacintosh.c
@@ -6,7 +6,7 @@
* r3 contains return value upon return.
*/
int
-_tas(void *x)
+_tas(int *x)
{
int v;
/*
@@ -36,7 +36,7 @@ _tas(void *x)
switch(v) {
case 0: return 0;
case 0xdeaddead: return 1;
- default: print("tas: corrupted 0x%lux\n", v);
+ default: fprint(2, "tas: corrupted 0x%lux\n", v);
}
return 0;
}