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

</pre>
<p><a href="https://github.com/macports/macports-legacy-support/commit/b7c964f912ecc7d86c462186cb768e0ea6acceda">https://github.com/macports/macports-legacy-support/commit/b7c964f912ecc7d86c462186cb768e0ea6acceda</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 b7c964f  Use __inline__ in public headers
</span>b7c964f is described below

<span style='display:block; white-space:pre;color:#808000;'>commit b7c964f912ecc7d86c462186cb768e0ea6acceda
</span>Author: Joshua Root <jmr@macports.org>
AuthorDate: Tue Sep 12 06:40:41 2023 +1000

<span style='display:block; white-space:pre;color:#404040;'>    Use __inline__ in public headers
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    These may be included by C89 code where the inline keyword is not available.
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    See: https://trac.macports.org/ticket/68148
</span>---
 include/dirent.h | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/include/dirent.h b/include/dirent.h
</span><span style='display:block; white-space:pre;color:#808080;'>index 983417b..aa9a6d7 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/include/dirent.h
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/include/dirent.h
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -57,23 +57,23 @@ extern int __mpls_dirfd(DIR *dir);
</span> #define dirfd(dir)         __mpls_dirfd(dir)
 #endif
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-static inline struct dirent *__mpls_readdir(DIR *dir) {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+static __inline__ struct dirent *__mpls_readdir(DIR *dir) {
</span>     return readdir(dir->__mpls_dir);
 }
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-static inline int __mpls_readdir_r(DIR *dir, struct dirent *entry, struct dirent **result) {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+static __inline__ int __mpls_readdir_r(DIR *dir, struct dirent *entry, struct dirent **result) {
</span>     return readdir_r(dir->__mpls_dir, entry, result);
 }
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-static inline void __mpls_rewinddir(DIR *dir) {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+static __inline__ void __mpls_rewinddir(DIR *dir) {
</span>     rewinddir(dir->__mpls_dir);
 }
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-static inline void __mpls_seekdir(DIR *dir, long loc) {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+static __inline__ void __mpls_seekdir(DIR *dir, long loc) {
</span>     seekdir(dir->__mpls_dir, loc);
 }
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-static inline long __mpls_telldir(DIR *dir) {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+static __inline__ long __mpls_telldir(DIR *dir) {
</span>     return telldir(dir->__mpls_dir);
 }
 
</pre><pre style='margin:0'>

</pre>