sfeed

Simple RSS and Atom feed parser
git clone https://git.sinitax.com/codemadness/sfeed
Log | Files | Refs | README | LICENSE | Upstream | sfeed.txt

commit 90fb851ec17058b03e400de70a464ca38e2569aa
parent b7e14e7b79a73f69044d91c6af6cf8b62e82437c
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Sun, 11 Mar 2018 18:18:15 +0100

include <sys/types.h> for types size_t, ssize_t etc

This makes sure xml.c in particular can be compiled without further
feature macros.

Diffstat:
Msfeed.c | 2++
Msfeed_html.c | 2++
Msfeed_opml_import.c | 2++
Msfeed_plain.c | 2++
Msfeed_web.c | 2++
Msfeed_xmlenc.c | 2++
Mxml.c | 2++
7 files changed, 14 insertions(+), 0 deletions(-)

diff --git a/sfeed.c b/sfeed.c @@ -1,3 +1,5 @@ +#include <sys/types.h> + #include <ctype.h> #include <err.h> #include <errno.h> diff --git a/sfeed_html.c b/sfeed_html.c @@ -1,3 +1,5 @@ +#include <sys/types.h> + #include <err.h> #include <stdio.h> #include <stdlib.h> diff --git a/sfeed_opml_import.c b/sfeed_opml_import.c @@ -1,3 +1,5 @@ +#include <sys/types.h> + #include <ctype.h> #include <err.h> #include <stdint.h> diff --git a/sfeed_plain.c b/sfeed_plain.c @@ -1,3 +1,5 @@ +#include <sys/types.h> + #include <ctype.h> #include <err.h> #include <locale.h> diff --git a/sfeed_web.c b/sfeed_web.c @@ -1,3 +1,5 @@ +#include <sys/types.h> + #include <ctype.h> #include <err.h> #include <stdint.h> diff --git a/sfeed_xmlenc.c b/sfeed_xmlenc.c @@ -1,3 +1,5 @@ +#include <sys/types.h> + #include <ctype.h> #include <err.h> #include <stdint.h> diff --git a/xml.c b/xml.c @@ -1,3 +1,5 @@ +#include <sys/types.h> + #include <ctype.h> #include <errno.h> #include <limits.h>