shithub: scc

ref: 13e9450a9ff1d651e155841258a126f91c7a5e77
dir: /tests/0025-string.c/

View raw version

int strlen(char *);

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