diff options
author | 2022-02-07 17:23:48 +0100 | |
---|---|---|
committer | 2022-04-20 17:05:45 -0700 | |
commit | 45a794bf7cee2988278802aeb64f7fc075f45f7f (patch) | |
tree | 8ebc66cb3f742c6e78dfae90f33cb3d4e8069c86 /tools/include/nolibc/stdio.h | |
parent | tools/nolibc/string: export memset() and memmove() (diff) | |
download | wireguard-linux-45a794bf7cee2988278802aeb64f7fc075f45f7f.tar.xz wireguard-linux-45a794bf7cee2988278802aeb64f7fc075f45f7f.zip |
tools/nolibc/errno: extract errno.h from sys.h
This allows us to provide a minimal errno.h to ease porting applications
that use it.
Signed-off-by: Willy Tarreau <w@1wt.eu>
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
Diffstat (limited to 'tools/include/nolibc/stdio.h')
-rw-r--r-- | tools/include/nolibc/stdio.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/include/nolibc/stdio.h b/tools/include/nolibc/stdio.h index 5f1cf32470d3..cb4d3ab3a565 100644 --- a/tools/include/nolibc/stdio.h +++ b/tools/include/nolibc/stdio.h @@ -11,6 +11,7 @@ #include "std.h" #include "arch.h" +#include "errno.h" #include "types.h" #include "sys.h" #include "stdlib.h" |