1 #include <string.h> 2 3 int 4 main(int argc, char **argv) 5 { 6 char buf[10]; 7 8 /* This expression can be folded. */ 9 strcpy(buf, "foo"); 10 11 return (1); 12 } 13