blob: 8c6d9d6f0235d1340d7a345f9f104ef089dc9782 [file] [log] [blame]
typedef unsigned char u8;
extern int foo(const u8 *key, unsigned int keylen);
int test (void)
{
static const u8 default_salt[64] = {};
return foo(default_salt, 64);
}