From ae9d1621d351e8a6bbba37e83bd19cd18a786d9c Mon Sep 17 00:00:00 2001 From: Yuichi Nishiwaki Date: Fri, 15 Nov 2013 16:48:02 +0900 Subject: [PATCH] rename picconf.h to config.h --- README.md | 2 +- include/{picconf.h => config.h} | 0 include/picrin.h | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename include/{picconf.h => config.h} (100%) diff --git a/README.md b/README.md index 7ca0302f..fafd1b68 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,7 @@ https://github.com/wasabiz/picrin built executable binary will be under bin/ directory and shared library `libpicrin.so` under lib/. - If you want to build picrin on other systems than x86_64, make sure PIC_NAN_BOXING flag is turned off (see include/picconf.h for detail). + If you want to build picrin on other systems than x86_64, make sure PIC_NAN_BOXING flag is turned off (see include/config.h for detail). - run diff --git a/include/picconf.h b/include/config.h similarity index 100% rename from include/picconf.h rename to include/config.h diff --git a/include/picrin.h b/include/picrin.h index d5589726..17c7a7d4 100644 --- a/include/picrin.h +++ b/include/picrin.h @@ -6,7 +6,7 @@ #include #include -#include "picconf.h" +#include "config.h" #include "picrin/value.h" struct pic_code;