Skip to content

Commit

Permalink
[libc][Obvious] Fix missing entrypoints after moving to generic
Browse files Browse the repository at this point in the history
Summary:
The previous patch moved the implementations of these to generic/ and
accidentally did not add the unlocked variants. This patch fixes that
  • Loading branch information
jhuber6 committed Sep 14, 2023
1 parent 12175bc commit bbe7eb9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions libc/src/stdio/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -308,8 +308,11 @@ add_entrypoint_object(

# These entrypoints have multiple potential implementations.
add_stdio_entrypoint_object(feof)
add_stdio_entrypoint_object(feof_unlocked)
add_stdio_entrypoint_object(ferror)
add_stdio_entrypoint_object(ferror_unlocked)
add_stdio_entrypoint_object(clearerr)
add_stdio_entrypoint_object(clearerr_unlocked)
add_stdio_entrypoint_object(fopen)
add_stdio_entrypoint_object(fclose)
add_stdio_entrypoint_object(fread_unlocked)
Expand Down

0 comments on commit bbe7eb9

Please sign in to comment.