[libc-commits] [libc] 9084d2a - [libc] Add a missing include
Dmitri Gribenko via libc-commits
libc-commits at lists.llvm.org
Mon Mar 3 23:56:20 PST 2025
Author: Dmitri Gribenko
Date: 2025-03-04T08:54:46+01:00
New Revision: 9084d2a0a11d8e12ac02f8870c418073985c2e59
URL: https://github.com/llvm/llvm-project/commit/9084d2a0a11d8e12ac02f8870c418073985c2e59
DIFF: https://github.com/llvm/llvm-project/commit/9084d2a0a11d8e12ac02f8870c418073985c2e59.diff
LOG: [libc] Add a missing include
This is a fixup for
https://github.com/llvm/llvm-project/commit/da6d5fa79a558b66c281bed3f5ce848a69a65208.
Added:
Modified:
libc/src/stdlib/qsort_pivot.h
Removed:
################################################################################
diff --git a/libc/src/stdlib/qsort_pivot.h b/libc/src/stdlib/qsort_pivot.h
index f202ea4f43fa3..6507f956a74b0 100644
--- a/libc/src/stdlib/qsort_pivot.h
+++ b/libc/src/stdlib/qsort_pivot.h
@@ -9,6 +9,8 @@
#ifndef LLVM_LIBC_SRC_STDLIB_QSORT_PIVOT_H
#define LLVM_LIBC_SRC_STDLIB_QSORT_PIVOT_H
+#include "src/__support/macros/attributes.h"
+
#include <stddef.h> // For size_t
namespace LIBC_NAMESPACE_DECL {
More information about the libc-commits
mailing list