summary refs log tree commit diff
path: root/mdate.c
blob: fb95d7cca53f75f7b93d0d6751d6aab02cca0c45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <time.h>
#include <unistd.h>

int
main()
{
	char buf[64];
	time_t now = time(0);

	ssize_t l = strftime(buf, sizeof buf,
	    "%a, %d %b %Y %T %z\n", localtime(&now));
	if (write(1, buf, l) == l)
		return 0;

	return 1;
}