[net.lang.c] fortran and asm keywords

tim (11/01/82)

What are the fortran and asm keywords used by some
C implementations for? (They are listed in the C
reference manual.) Also, does anyone know of a C
that uses the entry keyword?
				Tim Maroney
				unc!tim

lou (11/04/82)

Some C compilers allow the inclusion of assembly language (gasp!)
statements via the asm keyword, as in

	asm(" foo bar");

The C/370 compiler had a fortran "storage class" for external functions
so you could call a FORTRAN function subprogram:

	fortran minv();

	minv(a, n, d, l, m);