summaryrefslogtreecommitdiff
path: root/src/time/getdate.c
blob: a6a7ec69caa0e1ea2dd695b738c65cb5c4857d85 (plain)
1
2
3
4
5
6
7
8
9
10
#include <time.h>

struct tm *getdate(const char *string)
{
	return NULL;
}

/*
XOPEN(400)
*/