git: c604aa6c6b3f - stable/13 - libc/csu: rename ignore_init.c to libc_start1.c
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 12 Jun 2023 12:22:29 UTC
The branch stable/13 has been updated by kib: URL: https://cgit.FreeBSD.org/src/commit/?id=c604aa6c6b3f8877709c9d11a455428ba646a6e5 commit c604aa6c6b3f8877709c9d11a455428ba646a6e5 Author: Konstantin Belousov <kib@FreeBSD.org> AuthorDate: 2023-03-11 22:56:46 +0000 Commit: Konstantin Belousov <kib@FreeBSD.org> CommitDate: 2023-06-12 12:19:38 +0000 libc/csu: rename ignore_init.c to libc_start1.c (cherry picked from commit c5c9d980c4b0ca3866cb2ad67ec3f7111f5c4285) --- lib/libc/csu/Makefile.inc | 2 +- lib/libc/csu/{ignore_init.c => libc_start1.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libc/csu/Makefile.inc b/lib/libc/csu/Makefile.inc index 453303bea608..666744f27c8b 100644 --- a/lib/libc/csu/Makefile.inc +++ b/lib/libc/csu/Makefile.inc @@ -4,7 +4,7 @@ .include "${LIBC_SRCTOP}/csu/${LIBC_ARCH}/Makefile.inc" SRCS+= \ - ignore_init.c + libc_start1.c CFLAGS+= -I${LIBC_SRCTOP}/csu/${LIBC_ARCH} SYM_MAPS+=${LIBC_SRCTOP}/csu/Symbol.map diff --git a/lib/libc/csu/ignore_init.c b/lib/libc/csu/libc_start1.c similarity index 100% rename from lib/libc/csu/ignore_init.c rename to lib/libc/csu/libc_start1.c