You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
374 B
15 lines
374 B
/* |
|
* 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
|
|
|