about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorRory Bradford <roryrjb@gmail.com>2022-11-13 11:36:44 +0000
committerRory Bradford <roryrjb@gmail.com>2022-11-13 11:37:28 +0000
commitaeb50f93f082a8a41672286c2c2c69008c068610 (patch)
treeded5d6529013c0118dc3730e02c5a9f6b5f28ce6
parent9265cd4f1b9042e0fb1d5293f4cbe5c25e81f7e5 (diff)
downloadrf-aeb50f93f082a8a41672286c2c2c69008c068610.tar.gz
Inline VERSION
This just helps to avoids some errors in editors.

Signed-off-by: Rory Bradford <roryrjb@gmail.com>
-rw-r--r--Makefile1
-rw-r--r--rf.c1
2 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 21fe5e7..8386fe0 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,6 @@
 .POSIX:
 
 BIN = rf
-VERSION = 0.0.5
 OBJS = rf.o ignore.o include/common/strl.o
 PREFIX = /usr/local
 INCLUDE += -Iinclude/common
diff --git a/rf.c b/rf.c
index c3a56ad..8bfc592 100644
--- a/rf.c
+++ b/rf.c
@@ -20,6 +20,7 @@
 #include "include/common/common.h"
 
 #define IGNORE "ignore"
+#define VERSION "0.0.6"
 #define RFIGNORE ".rfignore"
 
 struct ignores *global_ignores;