Blame src/strftime.h

Packit 667938
/*
Packit 667938
**  STRFTIME.H - For older compilers which lack strftime()
Packit 667938
**
Packit 667938
**  Note: To avoid name collision with newer compilers, the function name
Packit 667938
**	    strftime_() is used.
Packit 667938
*/
Packit 667938
Packit 667938
#ifndef STRFTIME__H
Packit 667938
#define STRFTIME__H
Packit 667938
Packit 667938
#include <stddef.h>     /* for size_t */
Packit 667938
#include <time.h>       /* for struct tm */
Packit 667938
Packit 667938
size_t strftime_(char *s, size_t maxs, const char *f, const struct tm *t);
Packit 667938
Packit 667938
extern char * tzname_[2];
Packit 667938
Packit 667938
#endif /* STRFTIME__H */