blob: 02824c08e1d34a1a761ee65550340748612ee6b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* To avoid multiarch conflicts, we differentiate the 32/64 bit length
* specific header names. This file is a wrapper to include the proper
* arch-specific header at compile time.
*/
#include <bits/wordsize.h>
#if __WORDSIZE == 32
#include <tds_sysdep_public_32.h>
#elif __WORDSIZE == 64
#include <tds_sysdep_public_64.h>
#else
#error "Unknown word size"
#endif
|