Regen for multiple inclusion protection.

This commit is contained in:
njoly 2010-05-17 12:37:20 +00:00
parent a00a76ca8d
commit d52f4f14b6

View File

@ -1,4 +1,4 @@
/* $NetBSD: rump_syscalls.h,v 1.23 2010/05/11 20:11:47 pooka Exp $ */
/* $NetBSD: rump_syscalls.h,v 1.24 2010/05/17 12:37:20 njoly Exp $ */
/*
* System call protos in rump namespace.
@ -7,6 +7,9 @@
* created from NetBSD: syscalls.master,v 1.233 2010/04/21 16:17:04 pooka Exp
*/
#ifndef _RUMP_RUMP_SYSCALLS_H_
#define _RUMP_RUMP_SYSCALLS_H_
#ifdef _KERNEL
#error Interface not supported inside kernel
#endif /* _KERNEL */
@ -129,3 +132,5 @@ int rump_sys_lstat(const char *, struct stat *) __RENAME(rump_sys___lstat50);
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 *);
#endif /* _RUMP_RUMP_SYSCALLS_H_ */