1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-27 22:50:26 +03:00

replace: define INT64_MAX when not defined

Tru64 doesn't have any stdint.h

Autobuild-User(master): Björn Jacke <bj@sernet.de>
Autobuild-Date(master): Thu Jun 28 00:45:58 CEST 2012 on sn-devel-104
This commit is contained in:
Björn Jacke 2012-06-27 19:23:15 +02:00 committed by Bjoern Jacke
parent 666dba3353
commit 0a1aaca1bd

View File

@ -586,6 +586,10 @@ int rep_strerror_r(int errnum, char *buf, size_t buflen);
#define UINT64_MAX ((uint64_t)-1)
#endif
#ifndef INT64_MAX
#define INT64_MAX 9223372036854775807
#endif
#ifndef CHAR_BIT
#define CHAR_BIT 8
#endif