diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-08-14 17:27:18 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-08-14 17:27:18 +0200 |
commit | 42a1ceb58acc58ade796fa66eeed4bd8fd5901ec (patch) | |
tree | 9e57d3ac4518bc5bfd900cea4ea0087ededfa9e4 | |
parent | 4d4a8b6ab8f5968968af059399fe62798dba89c8 (diff) |
sfeed_opml_import: does not need util functions
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | sfeed_opml_import.c | 1 |
2 files changed, 2 insertions, 3 deletions
@@ -83,8 +83,8 @@ sfeed_html: sfeed_html.o util.o sfeed_mbox: sfeed_mbox.o util.o ${CC} -o $@ sfeed_mbox.o util.o ${LDFLAGS} -sfeed_opml_import: sfeed_opml_import.o xml.o util.o ${EXTRAOBJ} - ${CC} -o $@ sfeed_opml_import.o xml.o util.o ${EXTRAOBJ} ${LDFLAGS} +sfeed_opml_import: sfeed_opml_import.o xml.o ${EXTRAOBJ} + ${CC} -o $@ sfeed_opml_import.o xml.o ${EXTRAOBJ} ${LDFLAGS} sfeed_plain: sfeed_plain.o util.o ${CC} -o $@ sfeed_plain.o util.o ${LDFLAGS} diff --git a/sfeed_opml_import.c b/sfeed_opml_import.c index 6c3f505..55512cf 100644 --- a/sfeed_opml_import.c +++ b/sfeed_opml_import.c @@ -6,7 +6,6 @@ #include <strings.h> #include <time.h> -#include "util.h" #include "xml.h" static XMLParser parser; /* XML parser state */ |