1#ifndef NVIM_PROFILE_H
2#define NVIM_PROFILE_H
3
4#include <stdint.h>
5#include <time.h>
6
7typedef uint64_t proftime_T;
8
9#define TIME_MSG(s) do { \
10 if (time_fd != NULL) time_msg(s, NULL); \
11 } while (0)
12
13#ifdef INCLUDE_GENERATED_DECLARATIONS
14# include "profile.h.generated.h"
15#endif
16
17#endif // NVIM_PROFILE_H
18