summaryrefslogtreecommitdiff
path: root/regress/gnu/egcs/gcc-bounds/snprintf-3.cpp
blob: bd7126d075ec494b099cc7b5d8891818246e652a (plain)
1
2
3
4
5
6
7
#include <stdio.h>

int main(int argc, char **argv) {
	char *buf;
	snprintf(buf, sizeof(buf), "%s", "foo");
	return 1;
}