Implement sysarch().

This commit is contained in:
Jake Burkholder 2001-09-30 19:06:45 +00:00
parent c92d1bd289
commit 15b39a57a5

View File

@ -40,6 +40,13 @@ struct sysarch_args {
int
sysarch(struct thread *td, struct sysarch_args *uap)
{
TODO;
return (0);
int error;
error = 0;
switch (uap->op) {
default:
error = EINVAL;
break;
}
return (error);
}