
/* Code covered under 3-Clause BSD License - see LICENSE file for details */

#include <stdio.h>

#include "conf.h"

int
main()
{
	char space[SEGMENT_SPACE] = SEGMENT_STRING;

	printf("cramming some space using the string %s\n", space);
	
	return 0;
}

