+++ /dev/null
-dnl ######################################################################
-dnl What do we need for math libraries?
-AC_DEFUN([NTP_LIB_M], [
-LIBM=
-case "$host" in
- *-*-darwin*)
- ;;
- *)
- _libs=$LIBS
- AC_SEARCH_LIBS(cos, m, LIBM="-lm")
- LIBS=$_libs
- ;;
-esac
-AC_SUBST([LIBM])
-])
-dnl ======================================================================
+++ /dev/null
-#ifndef MAIN_H
-#define MAIN_H
-
-#include <config.h>
-#include <l_stdlib.h>
-#include <ntp_fp.h>
-#include <ntp.h>
-#include <ntp_stdlib.h>
-#include <ntp_unixtime.h>
-#include <isc/result.h>
-#include <isc/net.h>
-#include <stdio.h>
-
-#include <sntp-opts.h>
-
-#include "crypto.h"
-
-void set_li_vn_mode (struct pkt *spkt, char leap, char version, char mode);
-int sntp_main (int argc, char **argv);
-int generate_pkt (struct pkt *x_pkt, const struct timeval *tv_xmt,
- int key_id, struct key *pkt_key);
-int handle_pkt (int rpktl, struct pkt *rpkt, struct addrinfo *host);
-void offset_calculation (struct pkt *rpkt, int rpktl, struct timeval *tv_dst,
- double *offset, double *precision,
- double *root_dispersion);
-int on_wire (struct addrinfo *host, struct addrinfo *bcastaddr);
-int set_time (double offset);
-
-#endif /* MAIN_H */
+++ /dev/null
-#include "main.h"
-
-char *progname = "sntp"; /* for msyslog */
-volatile int debug;
-
-int
-main (
- int argc,
- char **argv
- )
-{
- return sntp_main(argc, argv);
-}