tree-gen
C++ code generator for tree structures
tree-compat.hpp.inc
Go to the documentation of this file.
1 
5 #ifndef _WIN32
6 #include <sys/types.h>
7 #endif
8 
9 TREE_NAMESPACE_BEGIN
10 
14 #ifdef _WIN32
15 typedef long long signed_size_t;
16 #else
17 typedef ssize_t signed_size_t;
18 #endif
19 
20 TREE_NAMESPACE_END