blob: bcf1b742053bba55c9b9ea4d9799b0cbe32902f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2011, 2015 Oracle and/or its affiliates. All rights reserved.
*/
#ifndef HTIMESTAMPXA_H
#define HTIMESTAMPXA_H
/*
* Timestamp with microseconds precision
*/
typedef struct __HTimestampData {
time_t Sec;
time_t Usec;
} HTimestampData;
void GetTime(HTimestampData *);
#endif
|