/usr/include/mumps_compat.h is in libmumps-dev 5.1.2-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
*
* This file is part of MUMPS 5.1.2, released
* on Mon Oct 2 07:37:01 UTC 2017
*
*
* Copyright 1991-2017 CERFACS, CNRS, ENS Lyon, INP Toulouse, Inria,
* University of Bordeaux.
*
* This version of MUMPS is provided to you free of charge. It is
* released under the CeCILL-C license:
* http://www.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 (__STDC_VERSION__ >= 199901L)
# define MUMPS_INLINE static inline
#else
# define MUMPS_INLINE
#endif
#endif /* MUMPS_COMPAT_H */
|