/usr/include/kerngen/qf_f2c.h is in libkernlib1-dev 20061220+dfsg3-4.2.
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 | /*
* $Id: qf_f2c.h,v 1.1.1.1 1996/02/15 17:49:20 mclareni Exp $
*
* $Log: qf_f2c.h,v $
* Revision 1.1.1.1 1996/02/15 17:49:20 mclareni
* Kernlib
*
*
* This is a piece of f2c.h file by AT&T
*
* qf_f2c.h
*/
typedef long ftnlen;
typedef long int integer;
typedef char *address;
typedef short int shortint;
typedef float real;
typedef double doublereal;
typedef struct { real r, i; } complex;
#ifdef WIN32 /* V.E.Fine 03.07.93 */
#define _COMPLEX_DEFINED
#endif
typedef struct { doublereal r, i; } doublecomplex;
typedef long int logical;
typedef short int shortlogical;
typedef char logical1;
typedef char integer1;
/* typedef long long longint; */ /* system-dependent */
#define TRUE_ (1)
#define FALSE_ (0)
#define min(a,b) ((a) <= (b) ? (a) : (b))
#define max(a,b) ((a) >= (b) ? (a) : (b))
|