mirror of
https://github.com/neovim/neovim.git
synced 2026-04-25 08:44:06 +00:00
20 lines
367 B
C
20 lines
367 B
C
#ifndef NVIM_PROFILE_H
|
|
#define NVIM_PROFILE_H
|
|
|
|
#include <stdint.h>
|
|
#include <time.h>
|
|
|
|
#include "nvim/cmdexpand_defs.h"
|
|
#include "nvim/ex_cmds_defs.h"
|
|
#include "nvim/runtime.h"
|
|
|
|
#define TIME_MSG(s) do { \
|
|
if (time_fd != NULL) time_msg(s, NULL); \
|
|
} while (0)
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "profile.h.generated.h"
|
|
#endif
|
|
|
|
#endif // NVIM_PROFILE_H
|