Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 25 Jul 2026 16:32:14 +0000
From:      Enji Cooper <ngie@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Cc:        Zhang Qiyue <peter-open-source.probing805@aleeas.com>
Subject:   git: 64038db825d6 - main - libc: tests: add static to resolve -Wmissing-prototypes
Message-ID:  <6a64e50e.1c14c.b5573b5@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by ngie:

URL: https://cgit.FreeBSD.org/src/commit/?id=64038db825d64fb4827fc8ee264ea0fa1a046d82

commit 64038db825d64fb4827fc8ee264ea0fa1a046d82
Author:     Zhang Qiyue <peter-open-source.probing805@aleeas.com>
AuthorDate: 2026-07-12 06:26:36 +0000
Commit:     Enji Cooper <ngie@FreeBSD.org>
CommitDate: 2026-07-25 16:29:28 +0000

    libc: tests: add static to resolve -Wmissing-prototypes
    
    The function create_staticobj() is only used inside this translation unit.
    Clang produces a -Wmissing-prototypes warning during standard buildworld.
    This warning will become a fatal compile error if MK_WERROR is enabled for hardened builds.
    
    PR: 285870
    Fixes: ee9ce1078 ("libc: tests: add some tests for __cxa_atexit...")
    Signed-off-by: Zhang Qiyue <peter-open-source.probing805@aleeas.com>
    Reviewed-by: ngie
    Pull-Request: https://github.com/freebsd/freebsd-src/pull/2321
---
 lib/libc/tests/stdlib/libatexit/libatexit.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/libc/tests/stdlib/libatexit/libatexit.cc b/lib/libc/tests/stdlib/libatexit/libatexit.cc
index bb286c97e421..7c5a7126d178 100644
--- a/lib/libc/tests/stdlib/libatexit/libatexit.cc
+++ b/lib/libc/tests/stdlib/libatexit/libatexit.cc
@@ -44,7 +44,7 @@ struct other_object {
 	}
 };
 
-void
+static void
 create_staticobj()
 {
 	static other_object obj;


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6a64e50e.1c14c.b5573b5>