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

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

/*
XOPEN(4)
*/