Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions ext/mri/wrapper.c
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ char *crypt_ra(const char *key, const char *setting,
return _crypt_blowfish_rn(key, setting, (char *)*data, *size);
}

#ifndef __SKIP_GNU
char *crypt_r(const char *key, const char *setting, void *data)
{
return _crypt_retval_magic(
Expand All @@ -194,6 +195,7 @@ char *crypt(const char *key, const char *setting)
crypt_rn(key, setting, output, sizeof(output)),
setting, output, sizeof(output));
}
#endif

#define __crypt_gensalt_rn crypt_gensalt_rn
#define __crypt_gensalt_ra crypt_gensalt_ra
Expand Down