diff options
author | Ian Moffett <ian@osmora.org> | 2025-07-28 02:15:21 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-07-28 03:31:14 -0400 |
commit | afb5c429264da104a4270ef5f227b23a4b356abc (patch) | |
tree | 0e7cee820961e30ee683fd8e9e0f7e8905e69ad3 /sys | |
parent | aca3a6d3ae9d853d5b5ac00068ae8e486bc61e25 (diff) |
kernel: net: Add missing sys/types.h include
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys')
-rw-r--r-- | sys/include/net/netbuf.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/include/net/netbuf.h b/sys/include/net/netbuf.h index 33ba06f..7067370 100644 --- a/sys/include/net/netbuf.h +++ b/sys/include/net/netbuf.h @@ -30,6 +30,8 @@ #ifndef _NET_NETBUF_H_ #define _NET_NETBUF_H_ +#include <sys/types.h> + #define NETBUF_LEN 256 struct netbuf { |