mirror of
https://github.com/neovim/neovim.git
synced 2025-10-05 09:26:30 +00:00
14 lines
241 B
C
14 lines
241 B
C
#ifndef NVIM_OS_TIME_H
|
|
#define NVIM_OS_TIME_H
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include <time.h>
|
|
|
|
typedef uint64_t Timestamp;
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "os/time.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_OS_TIME_H
|