From 8534f6034e9393c46ee8ccaa7b7e973b9a602abb Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Sun, 20 Nov 2016 01:20:01 +0100 Subject: [PATCH] add empty dummy file to be more POSIX compliant --- hermit/include/sys/uio.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 hermit/include/sys/uio.h diff --git a/hermit/include/sys/uio.h b/hermit/include/sys/uio.h new file mode 100644 index 000000000..83b5e66bd --- /dev/null +++ b/hermit/include/sys/uio.h @@ -0,0 +1,18 @@ +/* + * Just an empty dummy handler to be POSIX compliant. + */ +#ifndef __SYS_UIO_H__ +#define __SYS_UIO_H__ + +#include + +#ifdef __cplusplus +extern "C" { +#endif + + +#ifdef __cplusplus +} +#endif + +#endif