dsprenkels / randombytes

A portable C library for generating cypto-secure random bytes
MIT License
96 stars 37 forks source link

Change compilation to gnu99 to fix emscripten #26

Closed dsprenkels closed 4 years ago

dsprenkels commented 4 years ago

This PR changes the default compilation target to -std=gnu99 instead of -std=c99. Apparently, something in the emscripten system has changed to require this. For other targets, -std=c99 should still work.