aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2021-09-09 14:57:27 +0200
committerBjörn Linse <bjorn.linse@gmail.com>2021-09-09 16:06:43 +0200
commitad8eda3f5b7db424de912ac748bce6b02e43f64f (patch)
tree63e76388a545e13b7b073b6ca80348ee3d763732
parent0f596665ccb6f1764c2f14b8742850ab06cb9228 (diff)
downloadrneovim-ad8eda3f5b7db424de912ac748bce6b02e43f64f.tar.gz
rneovim-ad8eda3f5b7db424de912ac748bce6b02e43f64f.tar.bz2
rneovim-ad8eda3f5b7db424de912ac748bce6b02e43f64f.zip
fix(ci): don't enrage the CI Gods by calling a file 'core.*'
-rw-r--r--src/mpack/conv.h2
-rw-r--r--src/mpack/mpack_core.c (renamed from src/mpack/core.c)2
-rw-r--r--src/mpack/mpack_core.h (renamed from src/mpack/core.h)0
-rw-r--r--src/mpack/object.h2
-rw-r--r--src/mpack/rpc.h2
5 files changed, 4 insertions, 4 deletions
diff --git a/src/mpack/conv.h b/src/mpack/conv.h
index f022c74efa..71f14a067e 100644
--- a/src/mpack/conv.h
+++ b/src/mpack/conv.h
@@ -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;
diff --git a/src/mpack/core.c b/src/mpack/mpack_core.c
index ce529f0dca..0ad09bd46a 100644
--- a/src/mpack/core.c
+++ b/src/mpack/mpack_core.c
@@ -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)++))
diff --git a/src/mpack/core.h b/src/mpack/mpack_core.h
index 9edd13c41e..9edd13c41e 100644
--- a/src/mpack/core.h
+++ b/src/mpack/mpack_core.h
diff --git a/src/mpack/object.h b/src/mpack/object.h
index 3a4c0a484e..5327e56e18 100644
--- a/src/mpack/object.h
+++ b/src/mpack/object.h
@@ -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
diff --git a/src/mpack/rpc.h b/src/mpack/rpc.h
index 3f796b90e1..c1e8d656b5 100644
--- a/src/mpack/rpc.h
+++ b/src/mpack/rpc.h
@@ -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