From 2828cc3592dd9617f7c68809291ae8447c0dfe74 Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Wed, 24 Jul 2024 10:37:26 +0000 Subject: automatic import of freetds --- freetds-tds_sysdep_public.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 freetds-tds_sysdep_public.h (limited to 'freetds-tds_sysdep_public.h') diff --git a/freetds-tds_sysdep_public.h b/freetds-tds_sysdep_public.h new file mode 100644 index 0000000..02824c0 --- /dev/null +++ b/freetds-tds_sysdep_public.h @@ -0,0 +1,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 + +#if __WORDSIZE == 32 +#include +#elif __WORDSIZE == 64 +#include +#else +#error "Unknown word size" +#endif -- cgit v1.2.3