shithub: scc

ref: 4100a101f53391e3063652f203272462dc8537d7
dir: /tests/execute/0025-string.c/

View raw version

int strlen(char *);

int
main()
{
	char *p;
	
	p = "hello";
	return strlen(p) - 5;
}