[BACK]Return to lfsr_test.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / external / mpl / bind / dist / bin / tests / optional

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/external/mpl/bind/dist/bin/tests/optional/Attic/lfsr_test.c between version 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2018/08/12 12:07:39 version 1.1.1.2, 2019/01/09 16:48:15
Line 15 
Line 15 
 #include <config.h>  #include <config.h>
   
 #include <stdio.h>  #include <stdio.h>
   #include <inttypes.h>
   
 #include <isc/lfsr.h>  #include <isc/lfsr.h>
 #include <isc/print.h>  #include <isc/print.h>
 #include <isc/util.h>  #include <isc/util.h>
   
 isc_uint32_t state[1024 * 64];  uint32_t state[1024 * 64];
   
 int  int
 main(int argc, char **argv) {  main(int argc, char **argv) {
         isc_lfsr_t lfsr1, lfsr2;          isc_lfsr_t lfsr1, lfsr2;
         int i;          int i;
         isc_uint32_t temp;          uint32_t temp;
   
         UNUSED(argc);          UNUSED(argc);
         UNUSED(argv);          UNUSED(argv);

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2

CVSweb <webmaster@jp.NetBSD.org>