Place function comment above the right function.

This commit is contained in:
Mark Santcroos 2004-11-19 00:58:30 +00:00
parent 15579150a4
commit 9b7fe7e497
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=137879

View File

@ -241,6 +241,13 @@ ntp_gettime1(struct ntptimeval *ntvp)
ntvp->time_state = TIME_ERROR;
}
/*
* ntp_gettime() - NTP user application interface
*
* See the timex.h header file for synopsis and API description. Note
* that the TAI offset is returned in the ntvtimeval.tai structure
* member.
*/
#ifndef _SYS_SYSPROTO_H_
struct ntp_gettime_args {
struct ntptimeval *ntvp;
@ -257,13 +264,6 @@ ntp_gettime(struct thread *td, struct ntp_gettime_args *uap)
return (copyout(&ntv, uap->ntvp, sizeof(ntv)));
}
/*
* ntp_gettime() - NTP user application interface
*
* See the timex.h header file for synopsis and API description. Note
* that the TAI offset is returned in the ntvtimeval.tai structure
* member.
*/
static int
ntp_sysctl(SYSCTL_HANDLER_ARGS)
{