1 #include <stdio.h>
2 
3 int
main()4 main() {
5 	char	buf[] = "     world";
6 	__builtin_memset(buf, 'h', 4);
7 	puts(buf);
8 }
9 
10