summaryrefslogtreecommitdiff
path: root/emu/NetBSD
diff options
context:
space:
mode:
authorforsyth <forsyth@vitanuova.com>2009-07-19 17:10:21 +0100
committerforsyth <forsyth@vitanuova.com>2009-07-19 17:10:21 +0100
commit132f29a5b45fcdf39d41b96d34dd2c6d5de892e5 (patch)
treec1a4bcb3828123fffb57dc6aa82bc8c4c7a6e66f /emu/NetBSD
parent88388bd46774cb3b4dfaaa02473a85d36d9d76dc (diff)
dis/mathcalc.dis
Diffstat (limited to 'emu/NetBSD')
-rw-r--r--emu/NetBSD/os.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/emu/NetBSD/os.c b/emu/NetBSD/os.c
index 8a1d0b88..68bb0a3c 100644
--- a/emu/NetBSD/os.c
+++ b/emu/NetBSD/os.c
@@ -526,3 +526,11 @@ stackalloc(Proc *p, void **tos)
*(Proc **)rv = p;
return rv;
}
+
+int
+segflush(void *a, ulong n)
+{
+ USED(a);
+ USED(n);
+ return 0;
+}