diff options
Diffstat (limited to 'libc/src/ctype/isgraph.cpp')
| -rw-r--r-- | libc/src/ctype/isgraph.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/src/ctype/isgraph.cpp b/libc/src/ctype/isgraph.cpp index e195f9fcbf48..a5b6e501b581 100644 --- a/libc/src/ctype/isgraph.cpp +++ b/libc/src/ctype/isgraph.cpp @@ -10,8 +10,9 @@ #include "src/__support/common.h" #include "src/__support/ctype_utils.h" +#include "src/__support/macros/config.h" -namespace LIBC_NAMESPACE { +namespace LIBC_NAMESPACE_DECL { // TODO: Currently restricted to default locale. // These should be extended using locale information. @@ -19,4 +20,4 @@ LLVM_LIBC_FUNCTION(int, isgraph, (int c)) { return static_cast<int>(internal::isgraph(static_cast<unsigned>(c))); } -} // namespace LIBC_NAMESPACE +} // namespace LIBC_NAMESPACE_DECL |
