diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2017-01-12 21:11:34 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2017-01-12 21:11:34 +0100 |
commit | cb1555c7d741fa482c339aa9ac8a44753e2ad296 (patch) | |
tree | 7a7756a9a61d4b1f2d6095ea9531bb42f2f9f086 | |
parent | bdc1b187c45dbaeaa7dadce4d7999d9d550ec78f (diff) | |
download | plan9front-cb1555c7d741fa482c339aa9ac8a44753e2ad296.tar.xz |
sgi: change definition of tas() to take void* like the rest
-rw-r--r-- | sys/src/9/sgi/fns.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/sgi/fns.h b/sys/src/9/sgi/fns.h index 5cf2eee64..dc6902d15 100644 --- a/sys/src/9/sgi/fns.h +++ b/sys/src/9/sgi/fns.h @@ -50,7 +50,7 @@ void setpagemask(ulong); void setwired(ulong); ulong stlbhash(ulong); void syscall(Ureg*); -int tas(ulong*); +int tas(void*); void tlbinit(void); ulong tlbvirt(void); void touser(void*); |