diff options
author | Eric Faurot <eric@cvs.openbsd.org> | 2012-09-25 15:36:30 +0000 |
---|---|---|
committer | Eric Faurot <eric@cvs.openbsd.org> | 2012-09-25 15:36:30 +0000 |
commit | 93f8383b95e79c32c39c496b3d4377363ef33ad8 (patch) | |
tree | d58dbc152c4de6b9f057b8a298705fc0ec51c944 | |
parent | c49fea3370a1e9d95dc45958b1c1e6ae61aa788c (diff) |
need inttypes.h
from millert@
-rw-r--r-- | usr.sbin/smtpd/util.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/util.c b/usr.sbin/smtpd/util.c index 6f583396443..92fa639061d 100644 --- a/usr.sbin/smtpd/util.c +++ b/usr.sbin/smtpd/util.c @@ -1,4 +1,4 @@ -/* $OpenBSD: util.c,v 1.81 2012/09/21 12:33:32 eric Exp $ */ +/* $OpenBSD: util.c,v 1.82 2012/09/25 15:36:29 eric Exp $ */ /* * Copyright (c) 2000,2001 Markus Friedl. All rights reserved. @@ -37,6 +37,7 @@ #include <fcntl.h> #include <fts.h> #include <imsg.h> +#include <inttypes.h> #include <libgen.h> #include <netdb.h> #include <pwd.h> |