Module Name: src Committed By: riastradh Date: Tue Feb 16 23:07:58 UTC 2016
Modified Files: src/sys/sys: rndsource.h Log Message: Need <sys/queue.h> for LIST_ENTRY and <sys/null.h> for NULL. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/sys/sys/rndsource.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/sys/rndsource.h diff -u src/sys/sys/rndsource.h:1.3 src/sys/sys/rndsource.h:1.4 --- src/sys/sys/rndsource.h:1.3 Tue Apr 21 03:53:07 2015 +++ src/sys/sys/rndsource.h Tue Feb 16 23:07:58 2016 @@ -1,4 +1,4 @@ -/* $NetBSD: rndsource.h,v 1.3 2015/04/21 03:53:07 riastradh Exp $ */ +/* $NetBSD: rndsource.h,v 1.4 2016/02/16 23:07:58 riastradh Exp $ */ /*- * Copyright (c) 1997 The NetBSD Foundation, Inc. @@ -38,8 +38,10 @@ #endif #include <sys/types.h> +#include <sys/null.h> #include <sys/rndio.h> /* RND_TYPE_*, RND_FLAG_* */ #include <sys/rngtest.h> +#include <sys/queue.h> typedef struct rnd_delta_estimator { uint64_t x;