1 /*
2  * ntpdc-layout - print layout of NTP mode 7 request/response packets
3  */
4 
5 #include <config.h>
6 #include <stdio.h>
7 #include <stddef.h>
8 
9 #include "ntpdc.h"
10 #include "ntp_stdlib.h"
11 
12 #if defined(IMPL_XNTPD_OLD) && IMPL_XNTPD != 3
13 #error Unexpected IMPL_XNTPD
14 #endif
15 
16 int
main(void)17 main(void)
18 {
19 #include "nl.c"
20 
21   return (EXIT_SUCCESS);
22 }
23