Skip to content

Commit f024708

Browse files
authored
Fix after #121482 (#121764)
1 parent 346185c commit f024708

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

libc/src/stdlib/qsort_pivot.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#ifndef LLVM_LIBC_SRC_STDLIB_QSORT_PIVOT_H
1010
#define LLVM_LIBC_SRC_STDLIB_QSORT_PIVOT_H
1111

12-
#include <stdint.h>
12+
#include <stddef.h> // For size_t
1313

1414
namespace LIBC_NAMESPACE_DECL {
1515
namespace internal {

utils/bazel/llvm-project-overlay/libc/BUILD.bazel

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3481,11 +3481,13 @@ libc_support_library(
34813481
hdrs = [
34823482
"src/stdlib/heap_sort.h",
34833483
"src/stdlib/qsort_data.h",
3484+
"src/stdlib/qsort_pivot.h",
34843485
"src/stdlib/qsort_util.h",
34853486
"src/stdlib/quick_sort.h",
34863487
],
34873488
deps = [
34883489
":__support_common",
3490+
":__support_cpp_bit",
34893491
":__support_cpp_cstddef",
34903492
":__support_macros_attributes",
34913493
],

0 commit comments

Comments
 (0)