Skip to content

Commit c33e5d5

Browse files
authored
[libc] Add the missing math_extras.h include (#74259)
math_extras.h is used in integer_utils.h when building for 32-bit platforms but the include is missing.
1 parent e893f69 commit c33e5d5

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

libc/src/__support/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,7 @@ add_header_library(
189189
integer_utils.h
190190
DEPENDS
191191
.bit
192+
.math_extras
192193
.number_pair
193194
libc.src.__support.common
194195
libc.src.__support.CPP.type_traits

libc/src/__support/integer_utils.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#include "src/__support/common.h"
1414

1515
#include "bit.h"
16+
#include "math_extras.h"
1617
#include "number_pair.h"
1718

1819
#include <stdint.h>

0 commit comments

Comments
 (0)