diff options
| author | 1997-11-13 06:37:48 +0000 | |
|---|---|---|
| committer | 1997-11-13 06:37:48 +0000 | |
| commit | ee2bf048884822eed87bd22a354b7a8042f61fe3 (patch) | |
| tree | 4d5a75a25a1faceab8ef7e67bdb7bf15ebd391ad /sys/compat/linux/linux_file.c | |
| parent | Bug fixes from Sleepycat Software for db_btree databases; for some corner (diff) | |
| download | wireguard-openbsd-ee2bf048884822eed87bd22a354b7a8042f61fe3.tar.xz wireguard-openbsd-ee2bf048884822eed87bd22a354b7a8042f61fe3.zip | |
put mremap() in linux_misc.c
Diffstat (limited to 'sys/compat/linux/linux_file.c')
| -rw-r--r-- | sys/compat/linux/linux_file.c | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/sys/compat/linux/linux_file.c b/sys/compat/linux/linux_file.c index f9cd60daa09..355e1265e89 100644 --- a/sys/compat/linux/linux_file.c +++ b/sys/compat/linux/linux_file.c @@ -1,4 +1,4 @@ -/* $OpenBSD: linux_file.c,v 1.8 1997/09/05 04:35:14 deraadt Exp $ */ +/* $OpenBSD: linux_file.c,v 1.9 1997/11/13 06:37:48 deraadt Exp $ */ /* $NetBSD: linux_file.c,v 1.15 1996/05/20 01:59:09 fvdl Exp $ */ /* @@ -827,23 +827,3 @@ linux_sys_fdatasync(p, v, retval) } */ *uap = v; return sys_fsync(p, uap, retval); } - -/* - * mremap() dummy -*/ -int -linux_sys_mremap(p, v, retval) - struct proc *p; - void *v; - register_t *retval; -{ -#ifdef notdef - struct linux_sys_mremap_args /* { - syscallarg(void *) old_address; - syscallarg(size_t) old_size; - syscallarg(size_t) new_size; - syscallarg(unsigned long) flags; - } */ *uap = v; -#endif - return ENOMEM; -} |
