diff options
| author | drochner <drochner@NetBSD.org> | 2009-07-21 19:56:55 +0000 |
|---|---|---|
| committer | drochner <drochner@NetBSD.org> | 2009-07-21 19:56:55 +0000 |
| commit | 8e73e87c59948f153cb9ff3dc4689155ec5eb16b (patch) | |
| tree | da674e7c66a784d34f085b5d3cdb8bedf00c8491 /common/lib/libc/string | |
| parent | 5a4d67314b12ce479c4d3d54c724aecbeeb87e5b (diff) | |
remove stray semicolons, makes lint happy and lets the libc build proceed
Diffstat (limited to 'common/lib/libc/string')
| -rw-r--r-- | common/lib/libc/string/popcount32.c | 8 | ||||
| -rw-r--r-- | common/lib/libc/string/popcount64.c | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/common/lib/libc/string/popcount32.c b/common/lib/libc/string/popcount32.c index dc50167290a..bc5058d546e 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 <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 diff --git a/common/lib/libc/string/popcount64.c b/common/lib/libc/string/popcount64.c index a03742ac794..17fe737e1ad 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 <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 |
