summaryrefslogtreecommitdiffstats
path: root/sayhello-stderr.c
blob: b993cf44a9b71e29c99f64d5a57291be8aa9c25e (plain)
1
2
3
4
5
6
#include <unistd.h>

void sayhello(void) {
	const char *buf="hello\n";
	write(2, buf, 6);
}