remove stray semicolons, makes lint happy and lets the libc build proceed
This commit is contained in:
parent
5a4d67314b
commit
8e73e87c59
|
@ -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 <sys/cdefs.h>
|
||||
__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 <limits.h>
|
||||
|
@ -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
|
||||
|
|
|
@ -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 <sys/cdefs.h>
|
||||
__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 <limits.h>
|
||||
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue