diff options
author | jlemon <jlemon@FreeBSD.org> | 2001-02-20 02:16:07 +0000 |
---|---|---|
committer | jlemon <jlemon@FreeBSD.org> | 2001-02-20 02:16:07 +0000 |
commit | a53edc49846a2e114590e0d7579a4348ceb43408 (patch) | |
tree | 5e289fe5552c6f1b41587b2c09618d9de55f961f /sys | |
parent | f64981b39c5749e3ac5f623486862d9aa4fbd128 (diff) | |
download | FreeBSD-src-a53edc49846a2e114590e0d7579a4348ceb43408.zip FreeBSD-src-a53edc49846a2e114590e0d7579a4348ceb43408.tar.gz |
Fix duplicate linux_mount definition
Diffstat (limited to 'sys')
-rw-r--r-- | sys/alpha/linux/syscalls.master | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/alpha/linux/syscalls.master b/sys/alpha/linux/syscalls.master index 038fe94..450ca4d 100644 --- a/sys/alpha/linux/syscalls.master +++ b/sys/alpha/linux/syscalls.master @@ -59,9 +59,7 @@ 18 UNIMPL LINUX 19 STD LINUX { int linux_lseek(int fdes, long off, int whence); } 20 NOPROTO LINUX { int getpid(void); } -21 STD LINUX { int linux_mount(char *specialfile, char *dir, \ - char *filesystemtype, u_long rwflag, \ - void *data); } +21 UNIMPL LINUX 22 STD LINUX { int linux_umount(char *path); } 23 NOPROTO LINUX { int setuid(uid_t uid); } 24 NOPROTO LINUX { int getuid(void); } @@ -385,7 +383,9 @@ 299 UNIMPL LINUX 300 STD LINUX { int linux_bdflush(void); } 301 UNIMPL LINUX sethae -302 STD LINUX { int linux_mount(void); } +302 STD LINUX { int linux_mount(char *specialfile, char *dir, \ + char *filesystemtype, u_long rwflag, \ + void *data); } 303 UNIMPL LINUX old_adjtimex 304 STD LINUX { int linux_swapoff(void); } 305 STD LINUX { int linux_getdents(int fd, void *dent, \ |