mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-08 13:39:25 -04:00
18 lines
334 B
C++
18 lines
334 B
C++
/* $NetBSD: ntpdtest.h,v 1.3 2015/07/10 14:20:36 christos Exp $ */
|
|
|
|
#include "tests_main.h"
|
|
|
|
extern "C" {
|
|
#include "ntp_stdlib.h"
|
|
#include "ntp_calendar.h"
|
|
};
|
|
|
|
class ntpdtest : public ntptest {
|
|
|
|
protected:
|
|
static time_t timefunc(time_t*);
|
|
static time_t nowtime;
|
|
static void settime(int y, int m, int d, int H, int M, int S);
|
|
|
|
};
|