
https://home.hccnet.nl/h.g.muller/perft.c

[roland@localhost perft]$ gcc -O3 -march=native -DNDEBUG perft.c -o perft
perft.c: Dans la fonction « main »:
perft.c:1459:21: warning: déclaration implicite de la fonction « strcmp » [-Wimplicit-function-declaration]
     if(argc > 1 && !strcmp(argv[1], "-u")) {
                     ^~~~~~
perft.c:1474:37: warning: transtypage d'un pointeur vers un entier de taille différente [-Wpointer-to-int-cast]
          Hash = (union _bucket *) (((int)Hash) + 63 & ~63);
                                     ^
perft.c:1474:17: warning: transtypage vers un pointeur depuis un entier de taille différente [-Wint-to-pointer-cast]
          Hash = (union _bucket *) (((int)Hash) + 63 & ~63);
                 ^
[roland@localhost perft]$ 
