diff options
author | svn2git <svn2git@FreeBSD.org> | 1994-07-01 08:00:00 +0000 |
---|---|---|
committer | svn2git <svn2git@FreeBSD.org> | 1994-07-01 08:00:00 +0000 |
commit | 5e0e9b99dc3fc0ecd49d929db0d57c784b66f481 (patch) | |
tree | e779b5a6edddbb949b7990751b12d6f25304ba86 /sys/kern/init_sysent.c | |
parent | a16f65c7d117419bd266c28a1901ef129a337569 (diff) |
Diffstat (limited to 'sys/kern/init_sysent.c')
-rw-r--r-- | sys/kern/init_sysent.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index 97056b0c3bbc..55a5b1e3263f 100644 --- a/sys/kern/init_sysent.c +++ b/sys/kern/init_sysent.c @@ -2,7 +2,7 @@ * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from $Id: syscalls.master,v 1.8 1994/01/31 10:27:25 davidg Exp $ + * created from $Id: syscalls.master,v 1.9 1994/03/15 01:58:33 wollman Exp $ */ #include "param.h" @@ -174,6 +174,8 @@ int msgsys(); int shmsys(); #else #endif +int ntp_gettime(); +int ntp_adjtime(); #ifdef MACHVMCOMPAT int svm_allocate(); int svm_deallocate(); @@ -453,8 +455,8 @@ struct sysent sysent[] = { 0, nosys, /* 172 = nosys */ 0, nosys, /* 173 = nosys */ 0, nosys, /* 174 = nosys */ - 0, nosys, /* 175 = nosys */ - 0, nosys, /* 176 = nosys */ + 1, ntp_gettime, /* 175 = ntp_gettime */ + 1, ntp_adjtime, /* 176 = ntp_adjtime */ #ifdef MACHVMCOMPAT 4, svm_allocate, /* 177 = vm_allocate */ 3, svm_deallocate, /* 178 = vm_deallocate */ |