summaryrefslogtreecommitdiff
path: root/com32/include/bitsize/limits.h
blob: 7129c4a6ddc8cdef8798703e887da7148cb1ec14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * bits32/limits.h
 */

#ifndef _BITSIZE_LIMITS_H
#define _BITSIZE_LIMITS_H

#if __SIZEOF_POINTER__ == 4
#include <bitsize32/limits.h>
#elif __SIZEOF_POINTER__ == 8
#include <bitsize64/limits.h>
#else
#error "Unable to build for to-be-defined architecture type"
#endif

#endif /* _BITSIZE_LIMITS_H */