1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
/*
*
* This file is part of MUMPS 5.8.2, released
* on Mon Jan 12 15:17:08 UTC 2026
*
*
* Copyright 1991-2026 CERFACS, CNRS, ENS Lyon, INP Toulouse, Inria,
* Mumps Technologies, University of Bordeaux.
*
* This version of MUMPS is provided to you free of charge. It is
* released under the CeCILL-C license
* (see doc/CeCILL-C_V1-en.txt, doc/CeCILL-C_V1-fr.txt, and
* https://cecill.info/licences/Licence_CeCILL-C_V1-en.html)
*
*/
/* Compatibility issues between various Windows versions */
#ifndef MUMPS_COMPAT_H
#define MUMPS_COMPAT_H
#if defined(_WIN32) && ! defined(__MINGW32__)
# define MUMPS_WIN32 1
#endif
#ifndef MUMPS_CALL
# ifdef MUMPS_WIN32
/* Choose between next lines or modify according
* to your Windows calling conventions: */
/* #define MUMPS_CALL */
/* #define MUMPS_CALL __stdcall */
/* #define MUMPS_CALL __declspec(dllexport) */
# define MUMPS_CALL
# else
# define MUMPS_CALL
# endif
#endif
#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)
# define MUMPS_INLINE static inline
#else
# define MUMPS_INLINE
#endif
#endif /* MUMPS_COMPAT_H */
|