diff options
author | Jakob Schlyter <jakob@cvs.openbsd.org> | 2000-04-24 22:37:16 +0000 |
---|---|---|
committer | Jakob Schlyter <jakob@cvs.openbsd.org> | 2000-04-24 22:37:16 +0000 |
commit | 62056d3e4ae550bce32ce2532eba673f039ac816 (patch) | |
tree | 69614b410dab5434b61975c587e67af1ce4326f1 /usr.sbin | |
parent | e6e279d3ec2a1726a5bd16d0e06780bd232c6d40 (diff) |
remove lint stuff. remove unneeded strlcpy.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/user/user.c | 29 |
1 files changed, 2 insertions, 27 deletions
diff --git a/usr.sbin/user/user.c b/usr.sbin/user/user.c index 07d03bb3643..94f70ee0e7e 100644 --- a/usr.sbin/user/user.c +++ b/usr.sbin/user/user.c @@ -1,4 +1,4 @@ -/* $OpenBSD: user.c,v 1.2 2000/04/24 22:31:29 jakob Exp $ */ +/* $OpenBSD: user.c,v 1.3 2000/04/24 22:37:15 jakob Exp $ */ /* $NetBSD: user.c,v 1.17 2000/04/14 06:26:55 simonb Exp $ */ /* @@ -31,15 +31,8 @@ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include <sys/cdefs.h> - -#ifndef lint -__COPYRIGHT( - "@(#) Copyright (c) 1999 \ - The NetBSD Foundation, Inc. All rights reserved."); -__RCSID("$NetBSD: user.c,v 1.17 2000/04/14 06:26:55 simonb Exp $"); -#endif +#include <sys/cdefs.h> #include <sys/types.h> #include <sys/param.h> #include <sys/stat.h> @@ -203,24 +196,6 @@ asystem(char *fmt, ...) return ret; } -#define NetBSD_1_4_K 104110000 - -#if defined(__NetBSD_Version__) && (__NetBSD_Version__ < NetBSD_1_4_K) -/* bounds checking strncpy */ -static int -strlcpy(char *to, char *from, size_t tosize) -{ - size_t n; - int fromsize; - - fromsize = strlen(from); - n = MIN(tosize - 1, fromsize); - (void) memcpy(to, from, n); - to[n] = '\0'; - return fromsize; -} -#endif - #ifdef EXTENSIONS /* return 1 if all of `s' is numeric */ static int |