From 9bcfc4ae419000a45a6721b36a78880799d2c1cf Mon Sep 17 00:00:00 2001 From: "Eric W. Biederman" Date: Sat, 9 Apr 2011 05:45:55 -0700 Subject: [PATCH] core: thread: Add a global errno variable to support lwip I don't have a clue why Peter's earlier port did not run into problems but I can't get thread_asm.S to link without this. Signed-off-by: Eric W. Biederman --- core/errno.c | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 core/errno.c diff --git a/core/errno.c b/core/errno.c new file mode 100644 index 0000000..d013499 --- /dev/null +++ b/core/errno.c @@ -0,0 +1,3 @@ +#include + +int errno; -- 2.7.4