diff options
author | Michael Jones <michaelrj@google.com> | 2025-06-06 14:12:07 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-06 14:12:07 -0700 |
commit | 3695d6cdf98c252af4a747af8e247b48e046721a (patch) | |
tree | dbc14c9b19fd6579fe62fc09c3c8b2f9a1c363ef /libc/src/stdio/gpu/stdout.cpp | |
parent | 549ce80f27b228ef08a71ec1c32c29322d997825 (diff) | |
download | llvm-3695d6cdf98c252af4a747af8e247b48e046721a.zip llvm-3695d6cdf98c252af4a747af8e247b48e046721a.tar.gz llvm-3695d6cdf98c252af4a747af8e247b48e046721a.tar.bz2 |
[libc][GPU] clean up includes (#143203)
The GPU stdio functions were depending on indirect inclusion for some of
their dependencies. This patch should fix all of that.
Diffstat (limited to 'libc/src/stdio/gpu/stdout.cpp')
-rw-r--r-- | libc/src/stdio/gpu/stdout.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/src/stdio/gpu/stdout.cpp b/libc/src/stdio/gpu/stdout.cpp index e3869f9..e458dcc 100644 --- a/libc/src/stdio/gpu/stdout.cpp +++ b/libc/src/stdio/gpu/stdout.cpp @@ -7,7 +7,7 @@ //===----------------------------------------------------------------------===// #include "hdr/types/FILE.h" -#include "src/__support/macros/config.h" +#include "src/__support/common.h" namespace LIBC_NAMESPACE_DECL { static struct { |