summaryrefslogtreecommitdiff
path: root/regress/compiler/files/checklen.c
blob: 92b91acafd41a498da67d4ace620f7cee5ae6ec3 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <assert.h>
#include <string.h>

int
main(void)
{
	const char *s = SPACES;

	assert(strlen(s) == LEN);
	return 0;
}