diff options
author | rsc <devnull@localhost> | 2004-04-19 23:58:57 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2004-04-19 23:58:57 +0000 |
commit | 67e4fce4f5b62cf5f9e6b4b7b59ff2b2818d21f5 (patch) | |
tree | c38707d39d594b7807a105ae5ea6d617184f764b /src/libmach | |
parent | b829c3547001eb2a3cf846410deb15ddd7349b96 (diff) | |
download | plan9port-67e4fce4f5b62cf5f9e6b4b7b59ff2b2818d21f5.tar.gz plan9port-67e4fce4f5b62cf5f9e6b4b7b59ff2b2818d21f5.tar.bz2 plan9port-67e4fce4f5b62cf5f9e6b4b7b59ff2b2818d21f5.zip |
make mac work
Diffstat (limited to 'src/libmach')
-rw-r--r-- | src/libmach/nosys.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/libmach/nosys.c b/src/libmach/nosys.c index 1407ba72..2a601800 100644 --- a/src/libmach/nosys.c +++ b/src/libmach/nosys.c @@ -6,6 +6,8 @@ #include <libc.h> #include <mach.h> +Mach *machcpu = &mach386; + void unmapproc(Map *m) { @@ -46,7 +48,7 @@ ctlproc(int pid, char *msg) { USED(pid); USED(msg); - werrstr("ctlproc not implemented'); + werrstr("ctlproc not implemented"); return -1; } @@ -55,5 +57,5 @@ proctextfile(int pid) { USED(pid); werrstr("proctextfile not implemented"); - return -1; + return nil; } |