/* Test truncation to char with %d */

#include "suite.h"

int main(void)
{
	printf("'%hhd'\n", 737);
	return 0;
}
