diff --git a/sshbn.c b/sshbn.c index e1abbb05..5a7835ed 100644 --- a/sshbn.c +++ b/sshbn.c @@ -1892,6 +1892,12 @@ void modalfatalbox(const char *p, ...) exit(1); } +int random_byte(void) +{ + modalfatalbox("random_byte called in testbn"); + return 0; +} + #define fromxdigit(c) ( (c)>'9' ? ((c)&0xDF) - 'A' + 10 : (c) - '0' ) int main(int argc, char **argv)