Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions libc/config/linux/aarch64/entrypoints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,6 @@ set(TARGET_LIBC_ENTRYPOINTS
libc.src.stdlib.realloc

# stdio.h entrypoints
libc.src.stdio.fdopen
libc.src.stdio.fileno
libc.src.stdio.fprintf
libc.src.stdio.fscanf
libc.src.stdio.vfscanf
Expand Down Expand Up @@ -918,6 +916,7 @@ if(LLVM_LIBC_FULL_BUILD)
libc.src.stdio.clearerr
libc.src.stdio.clearerr_unlocked
libc.src.stdio.fclose
libc.src.stdio.fdopen
libc.src.stdio.feof
libc.src.stdio.feof_unlocked
libc.src.stdio.ferror
Expand All @@ -926,6 +925,7 @@ if(LLVM_LIBC_FULL_BUILD)
libc.src.stdio.fgetc
libc.src.stdio.fgetc_unlocked
libc.src.stdio.fgets
libc.src.stdio.fileno
libc.src.stdio.flockfile
libc.src.stdio.fopen
libc.src.stdio.fopencookie
Expand Down
4 changes: 2 additions & 2 deletions libc/config/linux/riscv/entrypoints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,6 @@ set(TARGET_LIBC_ENTRYPOINTS
libc.src.stdlib.realloc

# stdio.h entrypoints
libc.src.stdio.fdopen
libc.src.stdio.fileno
libc.src.stdio.fprintf
libc.src.stdio.fscanf
libc.src.stdio.vfscanf
Expand Down Expand Up @@ -857,6 +855,7 @@ if(LLVM_LIBC_FULL_BUILD)
libc.src.stdio.clearerr
libc.src.stdio.clearerr_unlocked
libc.src.stdio.fclose
libc.src.stdio.fdopen
libc.src.stdio.feof
libc.src.stdio.feof_unlocked
libc.src.stdio.ferror
Expand All @@ -865,6 +864,7 @@ if(LLVM_LIBC_FULL_BUILD)
libc.src.stdio.fgetc
libc.src.stdio.fgetc_unlocked
libc.src.stdio.fgets
libc.src.stdio.fileno
libc.src.stdio.flockfile
libc.src.stdio.fopen
libc.src.stdio.fopencookie
Expand Down
4 changes: 2 additions & 2 deletions libc/config/linux/x86_64/entrypoints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,6 @@ set(TARGET_LIBC_ENTRYPOINTS
libc.src.stdlib.realloc

# stdio.h entrypoints
libc.src.stdio.fdopen
libc.src.stdio.fileno
libc.src.stdio.fprintf
libc.src.stdio.fscanf
libc.src.stdio.vfscanf
Expand Down Expand Up @@ -1018,6 +1016,7 @@ if(LLVM_LIBC_FULL_BUILD)
libc.src.stdio.clearerr
libc.src.stdio.clearerr_unlocked
libc.src.stdio.fclose
libc.src.stdio.fdopen
libc.src.stdio.feof
libc.src.stdio.feof_unlocked
libc.src.stdio.ferror
Expand All @@ -1026,6 +1025,7 @@ if(LLVM_LIBC_FULL_BUILD)
libc.src.stdio.fgetc
libc.src.stdio.fgetc_unlocked
libc.src.stdio.fgets
libc.src.stdio.fileno
libc.src.stdio.flockfile
libc.src.stdio.fopen
libc.src.stdio.fopencookie
Expand Down
3 changes: 1 addition & 2 deletions libc/src/stdio/generic/fileno.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//===-- Implementation of fileno
//-------------------------------------------===//
//===-- Implementation of fileno ------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
Expand Down
Loading