svn commit: r331283 - head/sys/kern

Conrad Meyer cem at FreeBSD.org
Wed Mar 21 03:43:41 UTC 2018


Author: cem
Date: Wed Mar 21 03:43:40 2018
New Revision: 331283
URL: https://svnweb.freebsd.org/changeset/base/331283

Log:
  Add missed sys/limits.h include
  
  Apparently header pollution on x86 hid its absense.  Sorry, other arch
  users.
  
  Fix the missed header introduced in r331279.
  
  Reported by:	tinderbox

Modified:
  head/sys/kern/sys_getrandom.c

Modified: head/sys/kern/sys_getrandom.c
==============================================================================
--- head/sys/kern/sys_getrandom.c	Wed Mar 21 03:16:14 2018	(r331282)
+++ head/sys/kern/sys_getrandom.c	Wed Mar 21 03:43:40 2018	(r331283)
@@ -33,6 +33,7 @@ __FBSDID("$FreeBSD$");
 
 #include <sys/param.h>
 #include <sys/errno.h>
+#include <sys/limits.h>
 #include <sys/proc.h>
 #include <sys/random.h>
 #include <sys/sysproto.h>


More information about the svn-src-all mailing list