Regen syscalls to get compat header included.

This commit is contained in:
pooka 2010-07-19 15:38:55 +00:00
parent 6ca15e9cbd
commit 6138a7dfff
2 changed files with 5 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: rump_syscalls.h,v 1.26 2010/06/10 19:10:10 pooka Exp $ */
/* $NetBSD: rump_syscalls.h,v 1.27 2010/07/19 15:38:55 pooka Exp $ */
/*
* System call protos in rump namespace.
@ -144,4 +144,6 @@ int rump_sys_mknod(const char *, mode_t, dev_t) __RENAME(rump_sys___mknod50);
int rump_sys_fhstat(const void *, size_t, struct stat *) __RENAME(rump_sys___fhstat50);
int rump_sys_pipe(int *);
#include <rump/rump_syscalls_compat.h>
#endif /* _RUMP_RUMP_SYSCALLS_H_ */

View File

@ -1,4 +1,4 @@
/* $NetBSD: rump_syscalls.c,v 1.46 2010/06/10 19:10:09 pooka Exp $ */
/* $NetBSD: rump_syscalls.c,v 1.47 2010/07/19 15:38:55 pooka Exp $ */
/*
* System call vector and marshalling for rump.
@ -8,7 +8,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: rump_syscalls.c,v 1.46 2010/06/10 19:10:09 pooka Exp $");
__KERNEL_RCSID(0, "$NetBSD: rump_syscalls.c,v 1.47 2010/07/19 15:38:55 pooka Exp $");
#include <sys/types.h>
#include <sys/param.h>