aboutsummaryrefslogtreecommitdiff
path: root/libc/src/stdio/gpu/fputc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/stdio/gpu/fputc.cpp')
-rw-r--r--libc/src/stdio/gpu/fputc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/src/stdio/gpu/fputc.cpp b/libc/src/stdio/gpu/fputc.cpp
index 90d2389..e6ef12f 100644
--- a/libc/src/stdio/gpu/fputc.cpp
+++ b/libc/src/stdio/gpu/fputc.cpp
@@ -11,7 +11,7 @@
#include <stdio.h>
-namespace __llvm_libc {
+namespace LIBC_NAMESPACE {
LLVM_LIBC_FUNCTION(int, fputc, (int c, ::FILE *stream)) {
unsigned char uc = static_cast<unsigned char>(c);
@@ -23,4 +23,4 @@ LLVM_LIBC_FUNCTION(int, fputc, (int c, ::FILE *stream)) {
return 0;
}
-} // namespace __llvm_libc
+} // namespace LIBC_NAMESPACE