summaryrefslogtreecommitdiff
path: root/libc/src/sched/linux/sched_getparam.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/sched/linux/sched_getparam.cpp')
-rw-r--r--libc/src/sched/linux/sched_getparam.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/src/sched/linux/sched_getparam.cpp b/libc/src/sched/linux/sched_getparam.cpp
index 64a62c5fd5e8..75756a65f0ed 100644
--- a/libc/src/sched/linux/sched_getparam.cpp
+++ b/libc/src/sched/linux/sched_getparam.cpp
@@ -10,11 +10,12 @@
#include "src/__support/OSUtil/syscall.h" // For internal syscall function.
#include "src/__support/common.h"
+#include "src/__support/macros/config.h"
#include "src/errno/libc_errno.h"
#include <sys/syscall.h> // For syscall numbers.
-namespace LIBC_NAMESPACE {
+namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(int, sched_getparam,
(pid_t tid, struct sched_param *param)) {
@@ -26,4 +27,4 @@ LLVM_LIBC_FUNCTION(int, sched_getparam,
return 0;
}
-} // namespace LIBC_NAMESPACE
+} // namespace LIBC_NAMESPACE_DECL