Skip to content

Commit 6932080

Browse files
authored
[libc] Add dependency <stdint.h> to src/string/string_utils.h (#149849)
string_utils.h uses uintptr_t, and there seems to be no tracking of this dependency. It seems upstream builds are unaffected but downstream this is causing a lot of flaky builds.
1 parent 65420e5 commit 6932080

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

libc/src/string/string_utils.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
#include "src/__support/macros/config.h"
2222
#include "src/__support/macros/optimization.h" // LIBC_UNLIKELY
2323

24+
#include <stdint.h> // uintptr_t
25+
2426
namespace LIBC_NAMESPACE_DECL {
2527
namespace internal {
2628

0 commit comments

Comments
 (0)