[libc-commits] [libc] [libc] Add a missing math-function-macros.h include (PR #98271)
Petr Hosek via libc-commits
libc-commits at lists.llvm.org
Tue Jul 9 22:05:47 PDT 2024
https://github.com/petrhosek created https://github.com/llvm/llvm-project/pull/98271
This was accidentally omitted in #96008.
>From 5730c3445e1b6cc78dd6b466ba3e4449cc65602f Mon Sep 17 00:00:00 2001
From: Petr Hosek <phosek at google.com>
Date: Tue, 9 Jul 2024 22:04:23 -0700
Subject: [PATCH] [libc] Add a missing math-function-macros.h include
This was accidentally omitted in #96008.
---
libc/hdr/math_macros.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/libc/hdr/math_macros.h b/libc/hdr/math_macros.h
index 863451123f3f8..0867ccd4743a8 100644
--- a/libc/hdr/math_macros.h
+++ b/libc/hdr/math_macros.h
@@ -12,6 +12,7 @@
#ifdef LIBC_FULL_BUILD
#include "include/llvm-libc-macros/math-macros.h"
+#include "include/llvm-libc-macros/math-function-macros.h"
#else // Overlay mode
More information about the libc-commits
mailing list