aboutsummaryrefslogtreecommitdiff
path: root/libc/src/math/gpu/modf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/math/gpu/modf.cpp')
-rw-r--r--libc/src/math/gpu/modf.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/src/math/gpu/modf.cpp b/libc/src/math/gpu/modf.cpp
index b6b06da..07dbbd6 100644
--- a/libc/src/math/gpu/modf.cpp
+++ b/libc/src/math/gpu/modf.cpp
@@ -9,10 +9,10 @@
#include "src/math/modf.h"
#include "src/__support/common.h"
-namespace __llvm_libc {
+namespace LIBC_NAMESPACE {
LLVM_LIBC_FUNCTION(double, modf, (double x, double *iptr)) {
return __builtin_modf(x, iptr);
}
-} // namespace __llvm_libc
+} // namespace LIBC_NAMESPACE