blob: d9f35dfc67ca7392967374aa4b5f370cd9bfad69 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef NVIM_MAP_DEFS_H
#define NVIM_MAP_DEFS_H
#include "nvim/lib/khash.h"
typedef const char * cstr_t;
typedef void * ptr_t;
#define Map(T) Map_##T
#endif // NVIM_MAP_DEFS_H
|