diff options
author | 2006-07-10 16:37:36 +0000 | |
---|---|---|
committer | 2006-07-10 16:37:36 +0000 | |
commit | f60fc7f4e18877c432858c402385f73c2afe1a28 (patch) | |
tree | 9200721f8a6e43b47575c381ec07305bd337974f /usr.bin/ssh/log.c | |
parent | NetBSD -> .Nx (diff) | |
download | wireguard-openbsd-f60fc7f4e18877c432858c402385f73c2afe1a28.tar.xz wireguard-openbsd-f60fc7f4e18877c432858c402385f73c2afe1a28.zip |
move #include <stdarg.h> out of includes.h; ok markus@
Diffstat (limited to 'usr.bin/ssh/log.c')
-rw-r--r-- | usr.bin/ssh/log.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/log.c b/usr.bin/ssh/log.c index 05d73e70bb1..aa7a61755a8 100644 --- a/usr.bin/ssh/log.c +++ b/usr.bin/ssh/log.c @@ -1,4 +1,4 @@ -/* $OpenBSD: log.c,v 1.32 2006/07/08 23:30:06 stevesk Exp $ */ +/* $OpenBSD: log.c,v 1.33 2006/07/10 16:37:36 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -36,6 +36,7 @@ #include "includes.h" +#include <stdarg.h> #include <syslog.h> #include <vis.h> |