/* Test left padding of %c */

#include "suite.h"

int main(void)
{
	printf("'%3c'\n", 'o');
	return 0;
}
