X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/25f654a73af995e32f18e334cb4ebb09ac158fd5..92c494cebdce7068e6c9c0fe4363467719c8ed67:/noise.c diff --git a/noise.c b/noise.c index a4648f8..0244869 100644 --- a/noise.c +++ b/noise.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: noise.c,v 1.6 2000/06/17 12:57:47 mdw Exp $ + * $Id: noise.c,v 1.8 2004/04/08 01:36:15 mdw Exp $ * * Acquisition of environmental noise (Unix-specific) * @@ -27,30 +27,6 @@ * MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: noise.c,v $ - * Revision 1.6 2000/06/17 12:57:47 mdw - * New free counter noise generator, for use if /dev/random is - * unavailable. - * - * Revision 1.5 1999/12/22 15:57:55 mdw - * Label system-specific parts more clearly. - * - * Revision 1.4 1999/12/10 23:25:15 mdw - * Bug fix: remove old spurious fflush. - * - * Revision 1.3 1999/12/10 23:24:11 mdw - * Bug fix: flush buffers before forking. - * - * Revision 1.2 1999/11/11 00:59:08 mdw - * A bit of reformatting. Initialize the uid and gid correctly. - * - * Revision 1.1 1999/09/03 08:41:12 mdw - * Initial import. - * - */ - /*----- Header files ------------------------------------------------------*/ #include "config.h" @@ -85,7 +61,7 @@ /*----- Noise source definition -------------------------------------------*/ -rand_source noise_source = { noise_acquire, noise_timer }; +const rand_source noise_source = { noise_acquire, noise_timer }; /*----- Static variables --------------------------------------------------*/