All pastes #1883552 Raw Edit

Stuff

public text v1 · immutable
#1883552 ·published 2010-06-15 12:11 UTC
rendered paste body
#include <stdlib.h>
#include <time.h>
#include <errno.h>

int main()
{
  struct tm tm;
  tm.tm_year = 3000; tm.tm_mon = 0; tm.tm_mday = 0;
  tm.tm_hour = 0; tm.tm_min = 0; tm.tm_sec = 0; tm.tm_isdst = 01;
  mktime(&tm);
  exit(errno == 0);
}