#ifndef _CONFIG_H_ #define _CONFIG_H_ 1 /* **++ ** FACILITY: ** FreeTDS Library ** ** ABSTRACT: ** ** Some standart definitions for compiling FreeTDS core library ** under OpenVMS (VSX/Alpha). ** ** AUTHOR: ** Ruslan R. Laishev ** ** **-- */ #ifdef __VMS #define STDC_HEADERS 1 #undef WORDS_BIGENDIAN #undef BSD_COMP #define SIZEOF_CHAR 1 #define SIZEOF_DOUBLE 8 /* The number of bytes in a float. */ # #define SIZEOF_INT 4 #define SIZEOF_LONG 4 #define SIZEOF_SHORT 2 #undef HAVE_DLFCN_H #undef HAVE_MALLOC_H #undef PACKAGE #undef VERSION #define HAVE_ICONV 1 #endif /* __VMS */ #endif /* _CONFIG_H_ */