shithub: scc

ref: aadf75311d17eec964fb6a8d1bad898e0920b101
dir: /tests/0025-string.c/

View raw version

int strlen(char *);

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