lua-arc4random

Cryptographically secure PRNG for Lua
Log | Files | Refs | README

unistd.h (199B)


      1 /*
      2  * Public domain
      3  * unistd.h compatibility shim
      4  */
      5 
      6 #include_next <unistd.h>
      7 
      8 #ifndef LIBCRYPTOCOMPAT_UNISTD_H
      9 #define LIBCRYPTOCOMPAT_UNISTD_H
     10 
     11 int getentropy(void *buf, size_t buflen);
     12 
     13 #endif