blob: eb4e676d7aaee630d503e05298cc8c0841ca5c92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* ISC license. */
#ifndef DJBTIME_INTERNAL_H
#define DJBTIME_INTERNAL_H
#include <skalibs/uint64.h>
extern unsigned int const leapsecs_table_len ;
extern uint64 const *const leapsecs_table ;
extern void leapsecs_add (uint64 *, int) ;
extern int leapsecs_sub (uint64 *) ;
extern int skalibs_tzisright (void) ;
#endif
|