Add prototype for localtime_r if needed.

This commit is contained in:
Darren Tucker 2019-11-01 14:41:07 +11:00
Родитель d500b59a82
Коммит 5eb7b9563f
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -322,6 +322,10 @@ void explicit_bzero(void *p, size_t n);
void freezero(void *, size_t);
#endif
#ifndef HAVE_LOCALTIME_R
struct tm *localtime_r(const time_t *, struct tm *);
#endif
char *xcrypt(const char *password, const char *salt);
char *shadow_pw(struct passwd *pw);