From a65b4eff0b147410f1434a28016396b4f57b07d3 Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Tue, 14 Jan 2020 20:44:16 +0900 Subject: [PATCH] Provide a dummy errno.h --- include/errno.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 include/errno.h diff --git a/include/errno.h b/include/errno.h new file mode 100644 index 0000000..0dea0a8 --- /dev/null +++ b/include/errno.h @@ -0,0 +1,8 @@ +#ifndef ERRNO_H +#define ERRNO_H + +#include + +#define errno (-ENOSYS) + +#endif /* ERRNO_H */ -- 2.47.3