/usr/include/comis/mdpool.h is in libpawlib2-dev 1:2.14.04.dfsg.2-7ubuntu1.
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 | #ifndef _MDPOOL_H
#define _MDPOOL_H
/* mdpool.h */
/* #include <comis/mdpool.h> or <comis/mdpool.inc> in one source code file of
* your executable program dynamically linked against libpaw
* so that MDPOOL is defined in your executable. This is
* necessary for proper functioning of the COMIS interpreter when
* dynamically linked.
*/
/* define MDSIZE: */
#include <comis/mdsize.h>
#include <cfortran.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
int iq[MDSIZE];
} mdpool_def;
#define MDPOOL COMMON_BLOCK(MDPOOL, mdpool)
COMMON_BLOCK_DEF(mdpool_def, MDPOOL);
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* _MDPOOL_H */
|