From 11194fe327f58f86ddd78dc018d519b1f2f41b93 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Fri, 16 Jul 2021 17:20:20 -0700 Subject: [PATCH] rename vmbest.c to vmalloc.c With the best* functions gone, it does not make sense to leave the implementation in a file called vmbest.c --- lib/vmalloc/CMakeLists.txt | 2 +- lib/vmalloc/Makefile.am | 2 +- lib/vmalloc/test.c | 2 +- lib/vmalloc/{vmbest.c => vmalloc.c} | 0 lib/vmalloc/vmalloc.vcxproj | 2 +- lib/vmalloc/vmalloc.vcxproj.filters | 2 +- 6 files changed, 5 insertions(+), 5 deletions(-) rename lib/vmalloc/{vmbest.c => vmalloc.c} (100%) diff --git a/lib/vmalloc/CMakeLists.txt b/lib/vmalloc/CMakeLists.txt index 917c3642b..1c7ac78d1 100644 --- a/lib/vmalloc/CMakeLists.txt +++ b/lib/vmalloc/CMakeLists.txt @@ -4,7 +4,7 @@ add_library(vmalloc STATIC vmhdr.h # Source files - vmbest.c + vmalloc.c vmclear.c vmclose.c vmopen.c diff --git a/lib/vmalloc/Makefile.am b/lib/vmalloc/Makefile.am index 6575c2aa9..76338eb3d 100644 --- a/lib/vmalloc/Makefile.am +++ b/lib/vmalloc/Makefile.am @@ -5,7 +5,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/lib noinst_HEADERS = vmalloc.h vmhdr.h noinst_LTLIBRARIES = libvmalloc_C.la -libvmalloc_C_la_SOURCES = vmbest.c vmclear.c vmclose.c \ +libvmalloc_C_la_SOURCES = vmalloc.c vmclear.c vmclose.c \ vmopen.c \ vmstrdup.c diff --git a/lib/vmalloc/test.c b/lib/vmalloc/test.c index 8c8c269a7..df683d9c4 100644 --- a/lib/vmalloc/test.c +++ b/lib/vmalloc/test.c @@ -13,7 +13,7 @@ // include vmalloc and some of its internals directly so we can call them #include #include -#include +#include #include #include #include diff --git a/lib/vmalloc/vmbest.c b/lib/vmalloc/vmalloc.c similarity index 100% rename from lib/vmalloc/vmbest.c rename to lib/vmalloc/vmalloc.c diff --git a/lib/vmalloc/vmalloc.vcxproj b/lib/vmalloc/vmalloc.vcxproj index 60c41cbb0..a6de3ed50 100644 --- a/lib/vmalloc/vmalloc.vcxproj +++ b/lib/vmalloc/vmalloc.vcxproj @@ -96,7 +96,7 @@ - + diff --git a/lib/vmalloc/vmalloc.vcxproj.filters b/lib/vmalloc/vmalloc.vcxproj.filters index ef5eee1c5..09c386f8c 100644 --- a/lib/vmalloc/vmalloc.vcxproj.filters +++ b/lib/vmalloc/vmalloc.vcxproj.filters @@ -23,7 +23,7 @@ - + Source Files -- 2.40.0