[libc-commits] [libc] 1b8c815 - [libc][Obvious] Fix incorrect filepath for ftell.h header
Joseph Huber via libc-commits
libc-commits at lists.llvm.org
Tue Sep 26 08:02:26 PDT 2023
Author: Joseph Huber
Date: 2023-09-26T10:02:20-05:00
New Revision: 1b8c8155ccb77ed2dfa8855e9105107683aa6c12
URL: https://github.com/llvm/llvm-project/commit/1b8c8155ccb77ed2dfa8855e9105107683aa6c12
DIFF: https://github.com/llvm/llvm-project/commit/1b8c8155ccb77ed2dfa8855e9105107683aa6c12.diff
LOG: [libc][Obvious] Fix incorrect filepath for ftell.h header
Summary:
The previous patch moved the location of this CMake line but didn't
update the header. Fix it.
Added:
Modified:
libc/src/stdio/generic/CMakeLists.txt
Removed:
################################################################################
diff --git a/libc/src/stdio/generic/CMakeLists.txt b/libc/src/stdio/generic/CMakeLists.txt
index f5f0c082dd48fd4..282d056bba71299 100644
--- a/libc/src/stdio/generic/CMakeLists.txt
+++ b/libc/src/stdio/generic/CMakeLists.txt
@@ -101,7 +101,7 @@ add_entrypoint_object(
SRCS
ftell.cpp
HDRS
- ftell.h
+ ../ftell.h
DEPENDS
libc.src.errno.errno
libc.include.stdio
More information about the libc-commits
mailing list