diff options
author | 2001-07-29 21:15:23 +0000 | |
---|---|---|
committer | 2001-07-29 21:15:23 +0000 | |
commit | 8a2f796d2d6ee9414b22dd2c51d9df522beee22f (patch) | |
tree | 0e5126a606cef7cd7358d02ba5754f3581b18e9f /lib/libc | |
parent | Clarified -o option in scp.1 OKed by Markus@ (diff) | |
download | wireguard-openbsd-8a2f796d2d6ee9414b22dd2c51d9df522beee22f.tar.xz wireguard-openbsd-8a2f796d2d6ee9414b22dd2c51d9df522beee22f.zip |
Minor style pedentry from ben@arbor.net plus some of my own and sync
libkern and libc versions.
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/string/strlen.c | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/lib/libc/string/strlen.c b/lib/libc/string/strlen.c index 332d5766f93..ab006e04c2b 100644 --- a/lib/libc/string/strlen.c +++ b/lib/libc/string/strlen.c @@ -1,6 +1,8 @@ +/* $OpenBSD: strlen.c,v 1.4 2001/07/29 21:15:23 millert Exp $ */ + /*- - * Copyright (c) 1990 The Regents of the University of California. - * All rights reserved. + * Copyright (c) 1990, 1993 + * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -32,10 +34,10 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strlen.c,v 1.3 1996/08/19 08:34:19 tholo Exp $"; +static char *rcsid = "$OpenBSD: strlen.c,v 1.4 2001/07/29 21:15:23 millert Exp $"; #endif /* LIBC_SCCS and not lint */ -#ifndef _KERNEL +#if !defined(_KERNEL) && !defined(_STANDALONE) #include <string.h> #else #include <lib/libkern/libkern.h> @@ -45,9 +47,10 @@ size_t strlen(str) const char *str; { - register const char *s; + const char *s; - for (s = str; *s; ++s); - return(s - str); + for (s = str; *s; ++s) + ; + return (s - str); } |