blob: f8676ea569a07d80412de18773dc996532031d38 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--- src/osgPlugins/txp/ORIG/trpage_sys.h Thu Apr 25 17:31:16 2002
+++ src/osgPlugins/txp/trpage_sys.h Fri May 24 19:24:39 2002
@@ -58,9 +58,16 @@
// Delete a file
#define TRPGDELETEFILE(file) remove((file))
+# if defined(__FreeBSD__)
+# include <sys/inttypes.h>
+typedef int64_t int64;
+# else
+
#ifndef int64
typedef long long int64;
#endif
+
+# endif
#endif
|