xref: /netbsd-src/external/bsd/ntp/dist/ntpdc/ntpdc-layout.c (revision cdfa2a7ef92791ba9db70a584a1d904730e6fb46)
1 /*	$NetBSD: ntpdc-layout.c,v 1.5 2020/05/25 20:47:26 christos Exp $	*/
2 
3 /*
4  * ntpdc-layout - print layout of NTP mode 7 request/response packets
5  */
6 
7 #include <config.h>
8 #include <stdio.h>
9 #include <stddef.h>
10 
11 #include "ntpdc.h"
12 #include "ntp_stdlib.h"
13 
14 #if defined(IMPL_XNTPD_OLD) && IMPL_XNTPD != 3
15 #error Unexpected IMPL_XNTPD
16 #endif
17 
18 int
main(void)19 main(void)
20 {
21 #include "nl.c"
22 
23   return (EXIT_SUCCESS);
24 }
25