1/*	$NetBSD: ntp_psl.h,v 1.2 2020/05/25 20:47:19 christos Exp $	*/
2
3#ifndef NTP_PSL_H
4#define NTP_PSL_H
5
6
7/*
8 * Poll Skew List Item
9 */
10
11typedef struct psl_item_tag {
12	int		sub;	/* int or short?  unsigned is OK, but why? */
13	int		qty;	/* int or short?  unsigned is OK, but why? */
14	int		msk;	/* int or short?  unsigned is OK */
15} psl_item;
16
17int get_pollskew(int, psl_item *);
18
19#endif	/* !defined(NTP_PSL_H) */
20