Skip to content

Commit bbe7eb9

Browse files
committed
[libc][Obvious] Fix missing entrypoints after moving to generic
Summary: The previous patch moved the implementations of these to generic/ and accidentally did not add the unlocked variants. This patch fixes that
1 parent 12175bc commit bbe7eb9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

libc/src/stdio/CMakeLists.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -308,8 +308,11 @@ add_entrypoint_object(
308308

309309
# These entrypoints have multiple potential implementations.
310310
add_stdio_entrypoint_object(feof)
311+
add_stdio_entrypoint_object(feof_unlocked)
311312
add_stdio_entrypoint_object(ferror)
313+
add_stdio_entrypoint_object(ferror_unlocked)
312314
add_stdio_entrypoint_object(clearerr)
315+
add_stdio_entrypoint_object(clearerr_unlocked)
313316
add_stdio_entrypoint_object(fopen)
314317
add_stdio_entrypoint_object(fclose)
315318
add_stdio_entrypoint_object(fread_unlocked)

0 commit comments

Comments
 (0)