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

</pre>
<p><a href="https://github.com/macports/macports-legacy-support/commit/6c10a2358ca52e2bb44e692f4de4fdef966c6e98">https://github.com/macports/macports-legacy-support/commit/6c10a2358ca52e2bb44e692f4de4fdef966c6e98</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 6c10a23  fstatat64: tests: add declaration for fstatat64()
</span>6c10a23 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 6c10a2358ca52e2bb44e692f4de4fdef966c6e98
</span>Author: Christopher Nielsen <mascguy@github.com>
AuthorDate: Fri Aug 18 14:29:42 2023 -0400

<span style='display:block; white-space:pre;color:#404040;'>    fstatat64: tests: add declaration for fstatat64()
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Fixes: https://trac.macports.org/ticket/65913
</span>---
 test/test_fstatat64.c | 8 ++++++++
 1 file changed, 8 insertions(+)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/test/test_fstatat64.c b/test/test_fstatat64.c
</span><span style='display:block; white-space:pre;color:#808080;'>index 01d737d..b7c96d1 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/test/test_fstatat64.c
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/test/test_fstatat64.c
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -26,6 +26,14 @@
</span> 
 #define FEEDBACK 1
 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+/*
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ * For newer macOS releases - where this syscall is available - it's declared
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ * in header 'sys/sysproto.h', within 'Kernel.framework'.
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ *
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ * To avoid depending on that, declare it ourselves. (Remember that C/C++
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ * allows redundant function declarations, as long as the signatures match.)
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ */
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+int fstatat64(int dirfd, const char *pathname, struct stat64 *buf, int flags);
</span> 
 int main (int argc, char **argv) {
 #if !__DARWIN_ONLY_64_BIT_INO_T && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ >= 1050
</pre><pre style='margin:0'>

</pre>