aboutsummaryrefslogtreecommitdiff
path: root/libc/src/math/generic/modff.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/math/generic/modff.cpp')
-rw-r--r--libc/src/math/generic/modff.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/src/math/generic/modff.cpp b/libc/src/math/generic/modff.cpp
index a979cff..daa6697 100644
--- a/libc/src/math/generic/modff.cpp
+++ b/libc/src/math/generic/modff.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(float, modff, (float x, float *iptr)) {
return fputil::modf(x, *iptr);
}
-} // namespace __llvm_libc
+} // namespace LIBC_NAMESPACE