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

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

#include <stdio.h>
#include <string.h>

int main(int argc, char **argv) {
	char *foo;
	strlcat(foo, "bar", -(sizeof(foo)));
	return 1;
}