1 #include <stdio.h> 2 #include <string.h> 3 4 int main(int argc, char **argv) { 5 char *foo; 6 strlcat(foo, "bar", -(sizeof(foo))); 7 return 1; 8 } 9