1
0
mirror of https://github.com/janet-lang/janet synced 2025-08-29 17:08:03 +00:00

Merge pull request #460 from andrewchambers/fix

Add missing JANET_API to janet_cryptorand.
This commit is contained in:
Calvin Rose
2020-08-07 11:46:44 -05:00
committed by GitHub

View File

@@ -1545,7 +1545,7 @@ JANET_API FILE *janet_dynfile(const char *name, FILE *def);
JANET_API JanetAbstract janet_checkfile(Janet j);
JANET_API FILE *janet_unwrapfile(Janet j, int32_t *flags);
int janet_cryptorand(uint8_t *out, size_t n);
JANET_API int janet_cryptorand(uint8_t *out, size_t n);
/* Marshal API */
JANET_API void janet_marshal_size(JanetMarshalContext *ctx, size_t value);