Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libc/regex add missing _



details:   https://anonhg.NetBSD.org/src/rev/a63c57e584a4
branches:  trunk
changeset: 959805:a63c57e584a4
user:      christos <christos%NetBSD.org@localhost>
date:      Thu Feb 25 21:59:27 2021 +0000

description:
add missing _

diffstat:

 lib/libc/regex/regcomp.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r e89f77f16cb3 -r a63c57e584a4 lib/libc/regex/regcomp.c
--- a/lib/libc/regex/regcomp.c  Thu Feb 25 21:56:35 2021 +0000
+++ b/lib/libc/regex/regcomp.c  Thu Feb 25 21:59:27 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: regcomp.c,v 1.43 2021/02/25 21:47:46 christos Exp $    */
+/*     $NetBSD: regcomp.c,v 1.44 2021/02/25 21:59:27 christos Exp $    */
 
 /*-
  * SPDX-License-Identifier: BSD-3-Clause
@@ -47,7 +47,7 @@
 static char sccsid[] = "@(#)regcomp.c  8.5 (Berkeley) 3/20/94";
 __FBSDID("$FreeBSD: head/lib/libc/regex/regcomp.c 368359 2020-12-05 03:18:48Z kevans $");
 #endif
-__RCSID("$NetBSD: regcomp.c,v 1.43 2021/02/25 21:47:46 christos Exp $");
+__RCSID("$NetBSD: regcomp.c,v 1.44 2021/02/25 21:59:27 christos Exp $");
 
 #define _OPENBSD_SOURCE
 
@@ -65,7 +65,7 @@
 #include <regex.h>
 #include <stdbool.h>
 
-#if defined(_weak_alias) && !defined(LIBHACK)
+#if defined(__weak_alias) && !defined(LIBHACK)
 __weak_alias(regcomp,_regcomp)
 #endif
 



Home | Main Index | Thread Index | Old Index