diff options
author | dim <dim@FreeBSD.org> | 2011-12-18 00:44:59 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2011-12-18 00:44:59 +0000 |
commit | b4db5ea75844aa61c0e8cb81caa76e05c1a04395 (patch) | |
tree | 5b9b24e5590f5d4f9c4654751aaf3397dd6d4073 | |
parent | 3785c803c74989379b58c828ebdba468ea9ffefd (diff) | |
download | FreeBSD-src-b4db5ea75844aa61c0e8cb81caa76e05c1a04395.zip FreeBSD-src-b4db5ea75844aa61c0e8cb81caa76e05c1a04395.tar.gz |
In usr.sbin/rpc.ypupdated/yp_dbupdate.c, include stdint.h, so intmax_t
is known, otherwise it won't build.
Pointy hat to: dim
MFC after: 1 week
-rw-r--r-- | usr.sbin/rpc.ypupdated/yp_dbupdate.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.sbin/rpc.ypupdated/yp_dbupdate.c b/usr.sbin/rpc.ypupdated/yp_dbupdate.c index 6fa0b129..2d0111d 100644 --- a/usr.sbin/rpc.ypupdated/yp_dbupdate.c +++ b/usr.sbin/rpc.ypupdated/yp_dbupdate.c @@ -35,6 +35,7 @@ __FBSDID("$FreeBSD$"); #include <sys/fcntl.h> +#include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |