mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-30 02:31:44 +00:00
13 lines
170 B
C
13 lines
170 B
C
#ifndef TIMESTAMP_H_
|
|
#define TIMESTAMP_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
unsigned long long NT_Now(void);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* TIMESTAMP_H_ */
|