- (dtucker) [defines.h] define PRIu64 for platforms that don't have it.
This commit is contained in:
parent
9eba40cec9
commit
709d0ce672
|
@ -1,6 +1,7 @@
|
||||||
20091209
|
20091209
|
||||||
- (dtucker) Wrap use of IPPROTO_IPV6 in an ifdef for platforms that don't
|
- (dtucker) Wrap use of IPPROTO_IPV6 in an ifdef for platforms that don't
|
||||||
have it.
|
have it.
|
||||||
|
- (dtucker) [defines.h] define PRIu64 for platforms that don't have it.
|
||||||
|
|
||||||
20091208
|
20091208
|
||||||
- (dtucker) OpenBSD CVS Sync
|
- (dtucker) OpenBSD CVS Sync
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
#ifndef _DEFINES_H
|
#ifndef _DEFINES_H
|
||||||
#define _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 */
|
/* Constants */
|
||||||
|
@ -753,4 +753,8 @@ struct winsize {
|
||||||
# define SSH_IOBUFSZ 8192
|
# define SSH_IOBUFSZ 8192
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef PRIu64
|
||||||
|
# define PRIu64 "llu"
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* _DEFINES_H */
|
#endif /* _DEFINES_H */
|
||||||
|
|
Loading…
Reference in New Issue