diff options
Diffstat (limited to 'src/time/strptime.c')
| -rw-r--r-- | src/time/strptime.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/time/strptime.c b/src/time/strptime.c new file mode 100644 index 00000000..c3c03547 --- /dev/null +++ b/src/time/strptime.c @@ -0,0 +1,10 @@ +#include <time.h> + +char *strptime(const char *restrict buf, const char *restrict format, struct tm *restrict tm) +{ + return (char*)buf; +} + +/* +XOPEN(4) +*/ |
