blob: 215aa88429daf68cd529c48fbe083ff5669dcfa1 [file] [log] [blame]
Brian Silvermanf7bd1c22015-12-24 16:07:11 -08001/*----------------------------------------------------------------------------*/
2/* Copyright (c) FIRST 2015. All Rights Reserved. */
3/* Open Source Software - may be modified and shared by FRC teams. The code */
4/* must be accompanied by the FIRST BSD license file in the root directory of */
5/* the project. */
6/*----------------------------------------------------------------------------*/
7#ifndef NT_SUPPORT_TIMESTAMP_H_
8#define NT_SUPPORT_TIMESTAMP_H_
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14unsigned long long NT_Now(void);
15
16#ifdef __cplusplus
17}
18#endif
19
20#ifdef __cplusplus
21namespace nt {
22
23unsigned long long Now();
24
25} // namespace nt
26#endif
27
28#endif // NT_SUPPORT_TIMESTAMP_H_