Don't try calling lsl when file is missing.
[splint-patched.git] / test / sizeoftest / sizeofConst.c
blobd63a186fefb81af937de7763b7832be8931922b2
1 /*@null@*/ char * f()
3 char *buf = malloc(sizeof ("1234") );
4 if (buf == NULL)
6 return NULL;
9 strcpy(buf, "1234");
10 return buf;