diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-22 20:48:24 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-22 20:48:24 +0000 |
commit | bcdacbe26d8de9891dc5bf9cd66c8f82d107cf02 (patch) | |
tree | a10a3892d873fbacbc15f8d9b70ced1608e1f89a /usr.bin/ssh/uidswap.c | |
parent | 6073ef8d8e4e88b190ebbbb462ac189bda16c160 (diff) |
move #include <string.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/uidswap.c')
-rw-r--r-- | usr.bin/ssh/uidswap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/uidswap.c b/usr.bin/ssh/uidswap.c index 24463c97db1..ff4beeca0dd 100644 --- a/usr.bin/ssh/uidswap.c +++ b/usr.bin/ssh/uidswap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uidswap.c,v 1.32 2006/07/17 01:31:10 stevesk Exp $ */ +/* $OpenBSD: uidswap.c,v 1.33 2006/07/22 20:48:23 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -18,6 +18,7 @@ #include <errno.h> #include <pwd.h> +#include <string.h> #include <unistd.h> #include "log.h" |