blob: 5520684d53d224663c09b8fcf8e21a1edb4a9a0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <time.h>
#include "_safety.h"
char *strptime(const char *restrict buf, const char *restrict format, struct tm *restrict tm)
{
SIGNAL_SAFE(0);
return (char*)buf;
}
/*
XOPEN(4)
*/
|