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