blob: 85d23c22b8291a2b65738c95a83a5cb03f6419d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* ISC license. */
#include <time.h>
#include <skalibs/djbtime.h>
int timespec_cmp (struct timespec const *a, struct timespec const *b)
{
if (a->tv_sec < b->tv_sec) return -1 ;
if (a->tv_sec > b->tv_sec) return 1 ;
if (a->tv_nsec < b->tv_nsec) return -1 ;
return a->tv_nsec > b->tv_nsec ;
}
|