mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-08 13:39:25 -04:00
18 lines
344 B
C++
18 lines
344 B
C++
/* $NetBSD: g_libntptest.h,v 1.1.1.2 2015/07/10 13:11:14 christos Exp $ */
|
|
|
|
#include "tests_main.h"
|
|
|
|
extern "C" {
|
|
#include "ntp_stdlib.h"
|
|
#include "ntp_calendar.h"
|
|
};
|
|
|
|
class libntptest : 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);
|
|
|
|
};
|