diff options
| -rw-r--r-- | libinterp/runt.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libinterp/runt.h b/libinterp/runt.h index e6e30924..e9342d08 100644 --- a/libinterp/runt.h +++ b/libinterp/runt.h @@ -727,6 +727,17 @@ struct F_Sys_read Array* buf; WORD n; }; +void Sys_readn(void*); +typedef struct F_Sys_readn F_Sys_readn; +struct F_Sys_readn +{ + WORD regs[NREG-1]; + WORD* ret; + uchar temps[12]; + Sys_FD* fd; + Array* buf; + WORD n; +}; void Sys_remove(void*); typedef struct F_Sys_remove F_Sys_remove; struct F_Sys_remove |
