This commit is contained in:
Andrey Urusov 2015-07-03 12:25:49 +03:00
commit ea91bf4d6d

View File

@ -11,9 +11,8 @@
* (~ 700 МБ/сек., 15 млн. строк в секунду)
*/
#include <stdint.h>
#include <cstdlib>
#include <stddef.h>
#include <cstdint>
#include <cstddef>
#define ROTL(x,b) (u64)( ((x) << (b)) | ( (x) >> (64 - (b))) )