ibmi: add stub function to satisfy linker (#4905)

Add a stub function for no-ahafs builds. src/unix/core.c won't actually
call uv__ahafs_event but the linker still needs to see a symbol.

Like commit 87943b03 but for IBM i instead of AIX this time.
This commit is contained in:
Ben Noordhuis 2025-10-07 23:08:33 +02:00 committed by GitHub
parent 80a5e3ba01
commit f3ce527ea9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -538,3 +538,9 @@ int uv_get_process_title(char* buffer, size_t size) {
void uv__process_title_cleanup(void) {
}
void uv__ahafs_event(uv_loop_t* loop,
uv__io_t* event_watch,
unsigned int fflags) {
/* Stub function to satisfy the linker. */
}