fix style. Thanks Simon!

This commit is contained in:
dmcmahill 2003-12-07 02:01:25 +00:00
parent a243add09b
commit 3bff1bb631
2 changed files with 10 additions and 8 deletions

View File

@ -1,3 +1,5 @@
/* $NetBSD: svr4_32_schedctl.c,v 1.2 2003/12/07 02:01:25 dmcmahill Exp $ */
/*
* Copyright (c) 2003 The NetBSD Foundation, Inc.
* All rights reserved.
@ -35,7 +37,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: svr4_32_schedctl.c,v 1.1 2003/12/07 01:36:58 dmcmahill Exp $");
__KERNEL_RCSID(0, "$NetBSD: svr4_32_schedctl.c,v 1.2 2003/12/07 02:01:25 dmcmahill Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -63,11 +65,10 @@ __KERNEL_RCSID(0, "$NetBSD: svr4_32_schedctl.c,v 1.1 2003/12/07 01:36:58 dmcmahi
#include <compat/svr4_32/svr4_32_schedctl.h>
int svr4_32_sys_schedctl(l, v, retval)
struct lwp *l;
void *v;
register_t *retval;
int
svr4_32_sys_schedctl(struct lwp *l, void *v, register_t *retval)
{
return 0; /* XXX */
}

View File

@ -1,4 +1,5 @@
/* $NetBSD: svr4_32_schedctl.h,v 1.1 2003/12/07 01:36:58 dmcmahill Exp $ */
/* $NetBSD: svr4_32_schedctl.h,v 1.2 2003/12/07 02:01:25 dmcmahill Exp $ */
/*
* Copyright (c) 2003 The NetBSD Foundation, Inc.
* All rights reserved.
@ -41,7 +42,7 @@
#include <compat/svr4/svr4_types.h>
#include <compat/svr4_32/svr4_32_types.h>
int svr4_32_sys_schedctl(struct lwp *l, void *v, register_t *retval);
int svr4_32_sys_schedctl(struct lwp *, void *, register_t *);
#endif
#endif /* !_SVR4_32_SCHEDCTL_H_ */