mirror of
https://github.com/leahneukirchen/mblaze
synced 2024-11-03 15:40:32 +00:00
17 lines
231 B
C
17 lines
231 B
C
#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;
|
|
}
|