<pre style='margin:0'>
Michael Dickens (michaelld) pushed a commit to branch master
in repository macports-legacy-support.

</pre>
<p><a href="https://github.com/macports/macports-legacy-support/commit/710cbd95a0bacbd3a52551fa2e812d09c7dc54d1">https://github.com/macports/macports-legacy-support/commit/710cbd95a0bacbd3a52551fa2e812d09c7dc54d1</a></p>
<pre style="white-space: pre; background: #F8F8F8">The following commit(s) were added to refs/heads/master by this push:
<span style='display:block; white-space:pre;color:#404040;'>     new 710cbd9  math: replace DECL with their equivalent to avoid #include <sys/cdefs.h>
</span>710cbd9 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 710cbd95a0bacbd3a52551fa2e812d09c7dc54d1
</span>Author: Michael Dickens <mlk@alum.mit.edu>
AuthorDate: Wed Mar 20 14:08:38 2019 -0400

<span style='display:block; white-space:pre;color:#404040;'>    math: replace DECL with their equivalent to avoid #include <sys/cdefs.h>
</span>---
 include/math.h | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/include/math.h b/include/math.h
</span><span style='display:block; white-space:pre;color:#808080;'>index 5c78b64..e404da1 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/include/math.h
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/include/math.h
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -23,10 +23,9 @@
</span> 
 #if __MP_LEGACY_SUPPORT_LLROUND__
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-/* For definition of __*_DECLS */
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-#include <sys/cdefs.h>
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-__BEGIN_DECLS
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+#ifdef __cplusplus
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+extern "C" {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+#endif
</span> 
 /*
  * These functions are present in the system math library but their
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -49,7 +48,9 @@ extern long long int llroundf ( float );
</span> extern long long int llroundl ( long double );
 #endif
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-__END_DECLS
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+#ifdef __cplusplus
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+#endif
</span> 
 /*
  * If the GCC <math.h> header exists, then tell it: (1) to include the
</pre><pre style='margin:0'>

</pre>