OpenBSD-4.6/regress/gnu/egcs/gcc-bounds/md-5.c

Compare this file to the similar file:
Show the results in this format:

#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <rmd160.h>

int
main(int argc, char **argv)
{
	RMD160_CTX ctx;
	unsigned char *data = malloc(10);
	char ret[32];

	strlcpy(data, "123456789", 10);

	RMD160Init(&ctx);
	RMD160Data(data, sizeof data, ret);
	printf("%s\n", ret);
}