diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2017-07-04 01:07:33 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2017-07-04 01:07:33 +0000 |
commit | e5e0aeb73585c6a7c25ade144e935be137229854 (patch) | |
tree | dae0c2e8772a476bdfdbd06676a9fed00dff903a | |
parent | 474036519bbfd3419cd4c402ba4ca79e864da8ac (diff) |
include stdarg.h explicitly instead of relying on event.h to bring it in.
-rw-r--r-- | usr.sbin/identd/identd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/identd/identd.c b/usr.sbin/identd/identd.c index 176e01f1bac..0529e1737af 100644 --- a/usr.sbin/identd/identd.c +++ b/usr.sbin/identd/identd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: identd.c,v 1.36 2017/05/26 17:38:46 florian Exp $ */ +/* $OpenBSD: identd.c,v 1.37 2017/07/04 01:07:32 dlg Exp $ */ /* * Copyright (c) 2013 David Gwynne <dlg@openbsd.org> @@ -40,6 +40,7 @@ #include <stdio.h> #include <limits.h> #include <stdlib.h> +#include <stdarg.h> #include <string.h> #include <signal.h> #include <syslog.h> |