diff options
Diffstat (limited to 'libc/src/stdio/gpu/ungetc.cpp')
| -rw-r--r-- | libc/src/stdio/gpu/ungetc.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/src/stdio/gpu/ungetc.cpp b/libc/src/stdio/gpu/ungetc.cpp index 52379e125464..e9232a5e43a2 100644 --- a/libc/src/stdio/gpu/ungetc.cpp +++ b/libc/src/stdio/gpu/ungetc.cpp @@ -8,10 +8,11 @@ #include "src/stdio/ungetc.h" #include "file.h" +#include "src/__support/macros/config.h" #include "hdr/types/FILE.h" -namespace LIBC_NAMESPACE { +namespace LIBC_NAMESPACE_DECL { LLVM_LIBC_FUNCTION(int, ungetc, (int c, ::FILE *stream)) { int ret; @@ -26,4 +27,4 @@ LLVM_LIBC_FUNCTION(int, ungetc, (int c, ::FILE *stream)) { return ret; } -} // namespace LIBC_NAMESPACE +} // namespace LIBC_NAMESPACE_DECL |
