blob: 1d7a5409a7bd3ed582a31e7748413cec6ae6db87 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- fortran.h.orig Tue Apr 23 02:45:02 1996
+++ fortran.h Sun Jun 20 13:32:40 1999
@@ -1,7 +1,11 @@
#ifndef FORTRAN_H
#define FORTRAN_H
+#if __FreeBSD__ < 4
#include <generic.h>
#define F77NAME(x) name2(x,_)
+#else
+#define F77NAME(x) x ## _
+#endif
#endif
|