diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2014-08-10 05:06:39 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2014-08-10 05:06:39 +0000 |
commit | 2783e0a60143eb3c65f6a27866a9ab7c67a1ff2f (patch) | |
tree | 248a9e3442048ac1e7bec2cb640a654d4f643c7b /libexec/login_radius | |
parent | 9b1b01508f92abcca819e0763b868027fcb5f02a (diff) |
Only need <stdint.h> and not all of <inttypes.h> here
Diffstat (limited to 'libexec/login_radius')
-rw-r--r-- | libexec/login_radius/raddauth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/login_radius/raddauth.c b/libexec/login_radius/raddauth.c index 8dc50149086..b0fb6933451 100644 --- a/libexec/login_radius/raddauth.c +++ b/libexec/login_radius/raddauth.c @@ -1,4 +1,4 @@ -/* $OpenBSD: raddauth.c,v 1.25 2013/11/27 21:25:25 deraadt Exp $ */ +/* $OpenBSD: raddauth.c,v 1.26 2014/08/10 05:06:38 guenther Exp $ */ /*- * Copyright (c) 1996, 1997 Berkeley Software Design, Inc. All rights reserved. @@ -73,7 +73,7 @@ #include <ctype.h> #include <err.h> #include <errno.h> -#include <inttypes.h> +#include <stdint.h> #include <limits.h> #include <login_cap.h> #include <netdb.h> |