diff options
author | 2015-03-14 23:02:21 +0000 | |
---|---|---|
committer | 2015-03-14 23:02:21 +0000 | |
commit | 35d67cbf03ff29bd50a005bd47a065ba5a671c95 (patch) | |
tree | 2b0206d96d946ee6ea0784fe9c2bc0bbf4c968e7 | |
parent | Use xstrdup(), from Michael W. Bombardieri (diff) | |
download | wireguard-openbsd-35d67cbf03ff29bd50a005bd47a065ba5a671c95.tar.xz wireguard-openbsd-35d67cbf03ff29bd50a005bd47a065ba5a671c95.zip |
Add missing #include <stdint.h> for SIZE_MAX.
-rw-r--r-- | usr.sbin/amd/include/am.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/amd/include/am.h b/usr.sbin/amd/include/am.h index 1dca9b0056c..da0aaa5df3a 100644 --- a/usr.sbin/amd/include/am.h +++ b/usr.sbin/amd/include/am.h @@ -1,4 +1,4 @@ -/* $OpenBSD: am.h,v 1.17 2015/01/21 09:51:23 guenther Exp $ */ +/* $OpenBSD: am.h,v 1.18 2015/03/14 23:02:21 millert Exp $ */ /* * Copyright (c) 1990 Jan-Simon Pendry @@ -46,6 +46,7 @@ #include <rpc/rpc.h> #include <sys/mount.h> #include <string.h> +#include <stdint.h> #include <stdlib.h> #include "nfs_prot.h" #include <assert.h> |