diff options
Diffstat (limited to 'src/nvim/profile.h')
-rw-r--r-- | src/nvim/profile.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/nvim/profile.h b/src/nvim/profile.h new file mode 100644 index 0000000000..26d1ebe3a2 --- /dev/null +++ b/src/nvim/profile.h @@ -0,0 +1,13 @@ +#ifndef NVIM_PROFILE_H +#define NVIM_PROFILE_H + +#include <stdint.h> +#include <time.h> + +typedef uint64_t proftime_T; + +#ifdef INCLUDE_GENERATED_DECLARATIONS +# include "profile.h.generated.h" +#endif + +#endif // NVIM_PROFILE_H |