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

#include "xpledge.h"

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

	xpledge("stdio", "");

	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;
}