mirror of
https://frontier.innolan.net/rainlance/amiga-tz.git
synced 2026-05-07 01:33:23 +00:00
asctime_r fix
SCCS-file: private.h SCCS-SID: 7.54
This commit is contained in:
committed by
Paul Eggert
parent
3aacac064b
commit
f791ae63fa
11
private.h
11
private.h
@@ -190,10 +190,21 @@ extern int unlink P((const char * filename));
|
||||
** But some newer errno.h implementations define it as a macro.
|
||||
** Fix the former without affecting the latter.
|
||||
*/
|
||||
|
||||
#ifndef errno
|
||||
extern int errno;
|
||||
#endif /* !defined errno */
|
||||
|
||||
/*
|
||||
** Some time.h implementations don't declare asctime_r.
|
||||
** Others might define it as a macro.
|
||||
** Fix the former without affecting the latter.
|
||||
*/
|
||||
|
||||
#ifndef asctime_r
|
||||
extern char * asctime_r();
|
||||
#endif
|
||||
|
||||
/*
|
||||
** Private function declarations.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user