File tree Expand file tree Collapse file tree 3 files changed +4
-13
lines changed Expand file tree Collapse file tree 3 files changed +4
-13
lines changed Original file line number Diff line number Diff line change @@ -209,15 +209,6 @@ add_entrypoint_object(
209
209
libc.src.stdio.printf_core.vfprintf_internal
210
210
)
211
211
212
- add_stdio_entrypoint_object (
213
- fileno
214
- SRCS
215
- fileno.cpp
216
- HDRS
217
- fileno.h
218
- DEPENDS
219
- libc.src.stdio.fileno
220
- )
221
212
222
213
add_subdirectory (printf_core )
223
214
add_subdirectory (scanf_core )
@@ -251,6 +242,7 @@ add_stdio_entrypoint_object(ferror_unlocked)
251
242
add_stdio_entrypoint_object (fseek )
252
243
add_stdio_entrypoint_object (ftell )
253
244
add_stdio_entrypoint_object (fseeko )
245
+ add_stdio_entrypoint_object (fileno )
254
246
add_stdio_entrypoint_object (ftello )
255
247
add_stdio_entrypoint_object (fflush )
256
248
add_stdio_entrypoint_object (clearerr )
Original file line number Diff line number Diff line change 1
- // ===-- Implementation header of fileno --------------------------*- C++
2
- // -*-===//
1
+ // ===-- Implementation header of fileno -------------------------*- C++ -*-===//
3
2
//
4
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5
4
// See https://llvm.org/LICENSE.txt for license information.
10
9
#ifndef LLVM_LIBC_SRC_STDIO_FILENO_H
11
10
#define LLVM_LIBC_SRC_STDIO_FILENO_H
12
11
13
- #include " include/llvm-libc- types/FILE.h"
12
+ #include " hdr/ types/FILE.h"
14
13
15
14
namespace LIBC_NAMESPACE {
16
15
Original file line number Diff line number Diff line change 9
9
10
10
#include " src/stdio/fileno.h"
11
11
12
- #include " include/llvm-libc- types/FILE.h"
12
+ #include " hdr/ types/FILE.h"
13
13
#include " src/__support/File/file.h"
14
14
15
15
namespace LIBC_NAMESPACE {
You can’t perform that action at this time.
0 commit comments