diff options
author | Ian Moffett <ian@osmora.org> | 2025-09-30 21:52:09 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-09-30 21:52:09 -0400 |
commit | ff46d0abedb578dd8babc00ac3139c8e9c71d1fc (patch) | |
tree | 80ae03ee5b9462d4ca59402160582103f4d3908c /src/sys/include | |
parent | 5828e412a4d08f19d8c6eeb10d93db5ee4a85285 (diff) |
np: lex: Use foward declaration of np_work
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/include')
-rw-r--r-- | src/sys/include/np/lex.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sys/include/np/lex.h b/src/sys/include/np/lex.h index 0b56490..246769a 100644 --- a/src/sys/include/np/lex.h +++ b/src/sys/include/np/lex.h @@ -31,7 +31,8 @@ #define _NP_LEX_H_ 1 #include <sys/types.h> -#include <os/np.h> + +struct np_work; #define TOKEN_BEGIN "begin" #define TOKEN_PROC "proc" |