Libc ioctl extern function (#2162)

* Add barebones extern ioctl() binding in libc
* Update release notes
This commit is contained in:
BWindey
2025-05-29 23:00:35 +02:00
committed by GitHub
parent f2703508f2
commit d143ec227c
2 changed files with 6 additions and 4 deletions

View File

@@ -125,6 +125,7 @@ extern fn ZString getenv(ZString name);
extern fn ZString gets(char* buffer);
extern fn Tm* gmtime(Time_t* timer);
extern fn Tm* gmtime_r(Time_t* timer, Tm* buf) @if(!env::WIN32);
extern fn CInt ioctl(CInt fd, ulong request, ...);
extern fn CInt isatty(Fd fd) @if(!env::WIN32);
extern fn CLong labs(CLong x);
extern fn LongDivResult ldiv(CLong number, CLong denom);