diff options
author | 2014-08-10 05:00:25 +0000 | |
---|---|---|
committer | 2014-08-10 05:00:25 +0000 | |
commit | 99a960a11f9770fa555d2abf8b75f6b148459391 (patch) | |
tree | a9a8a64ea4d9d63058ca8c689518a0020ee50472 | |
parent | Only need <stdint.h> and not all of <inttypes.h> here (diff) | |
download | wireguard-openbsd-99a960a11f9770fa555d2abf8b75f6b148459391.tar.xz wireguard-openbsd-99a960a11f9770fa555d2abf8b75f6b148459391.zip |
Only need <stdint.h> and not all of <inttypes.h> here
-rw-r--r-- | sbin/swapctl/swaplist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/swapctl/swaplist.c b/sbin/swapctl/swaplist.c index 4aac6cb5011..83280833268 100644 --- a/sbin/swapctl/swaplist.c +++ b/sbin/swapctl/swaplist.c @@ -1,4 +1,4 @@ -/* $OpenBSD: swaplist.c,v 1.8 2011/06/24 21:02:09 jasper Exp $ */ +/* $OpenBSD: swaplist.c,v 1.9 2014/08/10 05:00:25 guenther Exp $ */ /* $NetBSD: swaplist.c,v 1.8 1998/10/08 10:00:31 mrg Exp $ */ /* @@ -33,7 +33,7 @@ #include <sys/swap.h> #include <err.h> -#include <inttypes.h> +#include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |