diff --git a/common/lib/libc/string/popcount32.c b/common/lib/libc/string/popcount32.c index dc50167290a6..bc5058d546e5 100644 --- a/common/lib/libc/string/popcount32.c +++ b/common/lib/libc/string/popcount32.c @@ -1,4 +1,4 @@ -/* $NetBSD: popcount32.c,v 1.2 2009/07/21 17:37:51 joerg Exp $ */ +/* $NetBSD: popcount32.c,v 1.3 2009/07/21 19:56:55 drochner Exp $ */ /*- * Copyright (c) 2009 The NetBSD Foundation, Inc. * All rights reserved. @@ -32,7 +32,7 @@ */ #include -__RCSID("$NetBSD: popcount32.c,v 1.2 2009/07/21 17:37:51 joerg Exp $"); +__RCSID("$NetBSD: popcount32.c,v 1.3 2009/07/21 19:56:55 drochner Exp $"); #if !defined(_KERNEL) && !defined(_STANDALONE) #include @@ -69,9 +69,9 @@ popcount32(uint32_t v) } #if UINT_MAX == 0xffffffffU -__strong_alias(popcount, popcount32); +__strong_alias(popcount, popcount32) #endif #if ULONG_MAX == 0xffffffffU -__strong_alias(popcountl, popcount32); +__strong_alias(popcountl, popcount32) #endif diff --git a/common/lib/libc/string/popcount64.c b/common/lib/libc/string/popcount64.c index a03742ac7945..17fe737e1add 100644 --- a/common/lib/libc/string/popcount64.c +++ b/common/lib/libc/string/popcount64.c @@ -1,4 +1,4 @@ -/* $NetBSD: popcount64.c,v 1.3 2009/07/21 17:14:12 joerg Exp $ */ +/* $NetBSD: popcount64.c,v 1.4 2009/07/21 19:56:55 drochner Exp $ */ /*- * Copyright (c) 2009 The NetBSD Foundation, Inc. * All rights reserved. @@ -32,7 +32,7 @@ */ #include -__RCSID("$NetBSD: popcount64.c,v 1.3 2009/07/21 17:14:12 joerg Exp $"); +__RCSID("$NetBSD: popcount64.c,v 1.4 2009/07/21 19:56:55 drochner Exp $"); #if !defined(_KERNEL) && !defined(_STANDALONE) #include @@ -73,10 +73,10 @@ popcount64(uint64_t v) #endif #if ULONG_MAX == 0xffffffffffffffffULL -__strong_alias(popcountl, popcount64); +__strong_alias(popcountl, popcount64) #endif #if ULLONG_MAX == 0xffffffffffffffffULL -__strong_alias(popcountll, popcount64); +__strong_alias(popcountll, popcount64) #endif