diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2016-02-14 17:38:16 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2016-02-14 17:38:16 -0500 |
commit | 6bb99d8fa7fce2504bf5d5a57629db6b9f5babba (patch) | |
tree | bcdc69da3805ff03cf6f7083b3dea1ff602026ce /bfs.h | |
parent | 9cba8770a2f08457735556b480164fcea2853de8 (diff) | |
download | bfs-6bb99d8fa7fce2504bf5d5a57629db6b9f5babba.tar.xz |
Set the version to 0.67.0.67
For now, version numbers are the fraction of GNU find features
supported.
Diffstat (limited to 'bfs.h')
-rw-r--r-- | bfs.h | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -18,8 +18,13 @@ #include <sys/types.h> #include <time.h> -#define BFS_VERSION "0.0" -#define BFS_HOMEPAGE "https://github.com/tavianator/bfs" +#ifndef BFS_VERSION +# define BFS_VERSION "0.67" +#endif + +#ifndef BFS_HOMEPAGE +# define BFS_HOMEPAGE "https://github.com/tavianator/bfs" +#endif /** * A command line expression. |