ANSIfy sys/libkern

PR:		223641
Submitted by:	ota@j.email.ne.jp
MFC after:	1 week
This commit is contained in:
Ed Maste 2017-11-19 00:31:13 +00:00
parent dab900583d
commit 4a8dea8cf9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=325988
19 changed files with 21 additions and 56 deletions

View File

@ -40,9 +40,7 @@ __FBSDID("$FreeBSD$");
* Shift a (signed) quad value right (arithmetic shift right).
*/
quad_t
__ashrdi3(a, shift)
quad_t a;
qshift_t shift;
__ashrdi3(quad_t a, qshift_t shift)
{
union uu aa;

View File

@ -42,9 +42,7 @@ typedef const unsigned long *culp;
* bcmp -- vax cmpc3 instruction
*/
int
bcmp(b1, b2, length)
const void *b1, *b2;
size_t length;
bcmp(const void *b1, const void *b2, size_t length)
{
#if BYTE_ORDER == LITTLE_ENDIAN
/*

View File

@ -53,12 +53,8 @@ __FBSDID("$FreeBSD$");
* look at item 3.
*/
void *
bsearch(key, base0, nmemb, size, compar)
const void *key;
const void *base0;
size_t nmemb;
size_t size;
int (*compar)(const void *, const void *);
bsearch(const void *key, const void *base0, size_t nmemb, size_t size,
int (*compar)(const void *, const void *))
{
const char *base = base0;
size_t lim;

View File

@ -42,8 +42,7 @@ __FBSDID("$FreeBSD$");
* signed.
*/
int
__cmpdi2(a, b)
quad_t a, b;
__cmpdi2(quad_t a, quad_t b)
{
union uu aa, bb;

View File

@ -41,8 +41,7 @@ __FBSDID("$FreeBSD$");
* ??? if -1/2 should produce -1 on this machine, this code is wrong
*/
quad_t
__divdi3(a, b)
quad_t a, b;
__divdi3(quad_t a, quad_t b)
{
u_quad_t ua, ub, uq;
int neg;

View File

@ -40,9 +40,7 @@ __FBSDID("$FreeBSD$");
* Shift an (unsigned) quad value right (logical shift right).
*/
quad_t
__lshrdi3(a, shift)
quad_t a;
qshift_t shift;
__lshrdi3(quad_t a, qshift_t shift)
{
union uu aa;

View File

@ -56,8 +56,7 @@ __FBSDID("$FreeBSD$");
* both frompcindex and frompc. Any reasonable, modern compiler will
* perform this optimization.
*/
_MCOUNT_DECL(frompc, selfpc) /* _mcount; may be static, inline, etc */
uintfptr_t frompc, selfpc;
_MCOUNT_DECL(uintfptr_t frompc, uintfptr_t selfpc) /* _mcount; may be static, inline, etc */
{
#ifdef GUPROF
int delta;
@ -245,8 +244,7 @@ MCOUNT
#ifdef GUPROF
void
mexitcount(selfpc)
uintfptr_t selfpc;
mexitcount(uintfptr_t selfpc)
{
struct gmonparam *p;
uintfptr_t selfpcdiff;

View File

@ -43,8 +43,7 @@ __FBSDID("$FreeBSD$");
* If -1/2 should produce -1 on this machine, this code is wrong.
*/
quad_t
__moddi3(a, b)
quad_t a, b;
__moddi3(quad_t a, quad_t b)
{
u_quad_t ua, ub, ur;
int neg;

View File

@ -77,8 +77,7 @@ __shl(digit *p, int len, int sh)
* leading zeros).
*/
u_quad_t
__qdivrem(uq, vq, arq)
u_quad_t uq, vq, *arq;
__qdivrem(u_quad_t uq, u_quad_t vq, u_quad_t *arq)
{
union uu tmp;
digit *u, *v, *q;

View File

@ -39,8 +39,7 @@ __FBSDID("$FreeBSD$");
static u_long randseed = 937186357; /* after srandom(1), NSHUFF counted */
void
srandom(seed)
u_long seed;
srandom(u_long seed)
{
int i;

View File

@ -35,10 +35,7 @@ __FBSDID("$FreeBSD$");
#include <sys/libkern.h>
int
scanc(size, cp, table, mask0)
u_int size;
const u_char *cp, table[];
int mask0;
scanc(u_int size, const u_char *cp, const u_char table[], int mask0)
{
const u_char *end;
u_char mask;

View File

@ -39,8 +39,7 @@ __FBSDID("$FreeBSD$");
* Compare strings.
*/
int
strcmp(s1, s2)
const char *s1, *s2;
strcmp(const char *s1, const char *s2)
{
while (*s1 == *s2++)
if (*s1++ == 0)

View File

@ -44,10 +44,7 @@ __FBSDID("$FreeBSD$");
* If retval >= siz, truncation occurred.
*/
size_t
strlcat(dst, src, siz)
char *dst;
const char *src;
size_t siz;
strlcat(char *dst, const char *src, size_t siz)
{
char *d = dst;
const char *s = src;

View File

@ -48,9 +48,7 @@ __FBSDID("$FreeBSD$");
* If *stringp is NULL, strsep returns NULL.
*/
char *
strsep(stringp, delim)
char **stringp;
const char *delim;
strsep(char **stringp, const char *delim)
{
char *s;
const char *spanp;

View File

@ -47,10 +47,7 @@ __FBSDID("$FreeBSD$");
* alphabets and digits are each contiguous.
*/
long
strtol(nptr, endptr, base)
const char *nptr;
char **endptr;
int base;
strtol(const char *nptr, char **endptr, int base)
{
const char *s = nptr;
unsigned long acc;

View File

@ -47,10 +47,7 @@ __FBSDID("$FreeBSD$");
* alphabets and digits are each contiguous.
*/
unsigned long
strtoul(nptr, endptr, base)
const char *nptr;
char **endptr;
int base;
strtoul(const char *nptr, char **endptr, int base)
{
const char *s = nptr;
unsigned long acc;

View File

@ -41,8 +41,7 @@ __FBSDID("$FreeBSD$");
* Neither a nor b are considered signed.
*/
int
__ucmpdi2(a, b)
u_quad_t a, b;
__ucmpdi2(u_quad_t a, u_quad_t b)
{
union uu aa, bb;

View File

@ -40,8 +40,7 @@ __FBSDID("$FreeBSD$");
* Divide two unsigned quads.
*/
u_quad_t
__udivdi3(a, b)
u_quad_t a, b;
__udivdi3(u_quad_t a, u_quad_t b)
{
return (__qdivrem(a, b, (u_quad_t *)0));

View File

@ -40,8 +40,7 @@ __FBSDID("$FreeBSD$");
* Return remainder after dividing two unsigned quads.
*/
u_quad_t
__umoddi3(a, b)
u_quad_t a, b;
__umoddi3(u_quad_t a, u_quad_t b)
{
u_quad_t r;