summaryrefslogtreecommitdiff
path: root/src/time/strptime.c
blob: f1d07bb29d5313ccdfca35c00b9a33ccc18c148c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#if 0

#include <time.h>

char *strptime(const char *restrict buf, const char *restrict format, struct tm *restrict tm)
{
	return (char*)buf;
}

/*
XOPEN(4)
*/


#endif