shithub: scc

ref: 38c7097175035acfa9408b3826c2c8306e20349a
dir: /tests/cc/execute/0025-string.c/

View raw version
int strlen(char *);

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