From fada2fcd693a2c7fde5ebd36ff9255b549b102ab Mon Sep 17 00:00:00 2001 From: Tomohiro Kusumi Date: Sat, 15 Apr 2017 00:06:21 +0300 Subject: [PATCH 1/1] Make lib/pattern.c a stand-alone library lib/pattern.c not having dependency on fio.h enables it to be a stand-alone library, which is useful for debugging purpose. In fact, most of the files under lib/ directory do things this way. This requires the previous commit. -- # cat ./test6.c #include #include "lib/pattern.h" int main(void) { /* just to see if it compiles */ paste_format_inplace(NULL, 0, NULL, 0, NULL); return 0; } # gcc -Wall -g ./test6.c ./lib/pattern.c ./lib/strntol.c Signed-off-by: Tomohiro Kusumi Signed-off-by: Jens Axboe --- lib/pattern.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/pattern.c b/lib/pattern.c index b8ae8090..0aeb9352 100644 --- a/lib/pattern.c +++ b/lib/pattern.c @@ -1,6 +1,13 @@ -#include "fio.h" +#include +#include +#include +#include +#include +#include + #include "strntol.h" #include "pattern.h" +#include "../minmax.h" #include "../oslib/strcasestr.h" /** -- 2.25.1