mirror of
https://github.com/neovim/neovim.git
synced 2025-10-05 09:26:30 +00:00
17 lines
400 B
C
17 lines
400 B
C
#pragma once
|
|
|
|
#include <stdint.h> // IWYU pragma: keep
|
|
#include <time.h>
|
|
|
|
#include "nvim/cmdexpand_defs.h" // IWYU pragma: keep
|
|
#include "nvim/ex_cmds_defs.h" // IWYU pragma: keep
|
|
#include "nvim/runtime_defs.h" // IWYU pragma: keep
|
|
|
|
#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
|