diff options
| author | forsyth <forsyth@vitanuova.com> | 2009-07-19 17:10:21 +0100 |
|---|---|---|
| committer | forsyth <forsyth@vitanuova.com> | 2009-07-19 17:10:21 +0100 |
| commit | 132f29a5b45fcdf39d41b96d34dd2c6d5de892e5 (patch) | |
| tree | c1a4bcb3828123fffb57dc6aa82bc8c4c7a6e66f /emu | |
| parent | 88388bd46774cb3b4dfaaa02473a85d36d9d76dc (diff) | |
dis/mathcalc.dis
Diffstat (limited to 'emu')
| -rw-r--r-- | emu/FreeBSD/os.c | 8 | ||||
| -rw-r--r-- | emu/NetBSD/os.c | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/emu/FreeBSD/os.c b/emu/FreeBSD/os.c index 8ef3f1b5..5bf2a833 100644 --- a/emu/FreeBSD/os.c +++ b/emu/FreeBSD/os.c @@ -511,3 +511,11 @@ stackalloc(Proc *p, void **tos) *(Proc **)rv = p; return rv; } + +int +segflush(void *a, ulong n) +{ + USED(a); + USED(n); + return 0; +} 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; +} |
