- (dtucker) [defines.h] define PRIu64 for platforms that don't have it.

This commit is contained in:
Darren Tucker 2010-01-09 09:25:54 +11:00
parent 9eba40cec9
commit 709d0ce672
2 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,7 @@
20091209
- (dtucker) Wrap use of IPPROTO_IPV6 in an ifdef for platforms that don't
have it.
- (dtucker) [defines.h] define PRIu64 for platforms that don't have it.
20091208
- (dtucker) OpenBSD CVS Sync

View File

@ -25,7 +25,7 @@
#ifndef _DEFINES_H
#define _DEFINES_H
/* $Id: defines.h,v 1.156 2009/08/28 01:21:07 dtucker Exp $ */
/* $Id: defines.h,v 1.157 2010/01/08 22:25:54 dtucker Exp $ */
/* Constants */
@ -753,4 +753,8 @@ struct winsize {
# define SSH_IOBUFSZ 8192
#endif
#ifndef PRIu64
# define PRIu64 "llu"
#endif
#endif /* _DEFINES_H */