summaryrefslogtreecommitdiff
path: root/regress/gnu/egcs/gcc-builtins/strcat-1.c
blob: 3694d7c2324008b7a5eb2be9c3aaab6fd7189e10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <string.h>

int
main(int argc, char **argv)
{
	char buf[512];
	volatile char *rv;

	/* This expression cannot be folded. */
	rv = strcat(buf, argv[0]);

	return (1);
}