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