aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@21a6bef8-4479-4f54-8f8d-0db94a2919ef>2004-06-28 09:13:19 +0000
committertradke <tradke@21a6bef8-4479-4f54-8f8d-0db94a2919ef>2004-06-28 09:13:19 +0000
commit4bc44285491ac553e14b26d6888104c0d7e18f54 (patch)
tree7f35e4b53435481bf8f6573d95e0396c06b581fa
parent5ae8c94657dc3da3063ce3df55fbbd6e49464c11 (diff)
Include <inttypes.h> instead of <stdint.h> to get the int64_t type.
The latter header file doesn't exist under OSF. git-svn-id: http://svn.cactuscode.org/arrangements/CactusExternal/FlexIO/trunk@67 21a6bef8-4479-4f54-8f8d-0db94a2919ef
-rw-r--r--src/Arch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Arch.h b/src/Arch.h
index 97978ea..e6b5bcd 100644
--- a/src/Arch.h
+++ b/src/Arch.h
@@ -29,7 +29,7 @@
typedef __int64 Long8;
#else
/* typedef long Long8; JMS 64-bit file offset kludge? */
-#include <stdint.h>
+#include <inttypes.h>
typedef int64_t Long8;
#endif