mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
fix(ci): don't enrage the CI Gods by calling a file 'core.*'
This commit is contained in:
parent
0f596665cc
commit
ad8eda3f5b
@ -1,7 +1,7 @@
|
||||
#ifndef MPACK_CONV_H
|
||||
#define MPACK_CONV_H
|
||||
|
||||
#include "core.h"
|
||||
#include "mpack_core.h"
|
||||
|
||||
#if ULLONG_MAX == 0xffffffffffffffff
|
||||
typedef long long mpack_sintmax_t;
|
||||
|
@ -1,6 +1,6 @@
|
||||
#include <string.h>
|
||||
|
||||
#include "core.h"
|
||||
#include "mpack_core.h"
|
||||
|
||||
#define UNUSED(p) (void)p;
|
||||
#define ADVANCE(buf, buflen) ((*buflen)--, (unsigned char)*((*buf)++))
|
@ -1,7 +1,7 @@
|
||||
#ifndef MPACK_OBJECT_H
|
||||
#define MPACK_OBJECT_H
|
||||
|
||||
#include "core.h"
|
||||
#include "mpack_core.h"
|
||||
#include "conv.h"
|
||||
|
||||
#ifndef MPACK_MAX_OBJECT_DEPTH
|
||||
|
@ -1,7 +1,7 @@
|
||||
#ifndef MPACK_RPC_H
|
||||
#define MPACK_RPC_H
|
||||
|
||||
#include "core.h"
|
||||
#include "mpack_core.h"
|
||||
#include "object.h"
|
||||
|
||||
#ifndef MPACK_RPC_MAX_REQUESTS
|
||||
|
Loading…
Reference in New Issue
Block a user