summaryrefslogtreecommitdiffstats
path: root/lib/libF77/F77_aloc.c
diff options
context:
space:
mode:
authorjmz <jmz@FreeBSD.org>1995-09-28 20:49:15 +0000
committerjmz <jmz@FreeBSD.org>1995-09-28 20:49:15 +0000
commit88fe667d3502c54a9143eea7b611ec0362bb639c (patch)
tree2bd4eef14755fc92c0ed2b2ea8abefe3c3081747 /lib/libF77/F77_aloc.c
parent3ebc2913631c7b53207cac9503f0a0141f628900 (diff)
downloadFreeBSD-src-88fe667d3502c54a9143eea7b611ec0362bb639c.zip
FreeBSD-src-88fe667d3502c54a9143eea7b611ec0362bb639c.tar.gz
Update to the 1995/09/20 version. Previous version was 1993/12/17.
Diffstat (limited to 'lib/libF77/F77_aloc.c')
-rw-r--r--lib/libF77/F77_aloc.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/lib/libF77/F77_aloc.c b/lib/libF77/F77_aloc.c
new file mode 100644
index 0000000..18a345f
--- /dev/null
+++ b/lib/libF77/F77_aloc.c
@@ -0,0 +1,32 @@
+#include "f2c.h"
+#undef abs
+#undef min
+#undef max
+#include "stdio.h"
+
+static integer memfailure = 3;
+
+#ifdef KR_headers
+extern char *malloc();
+extern void exit_();
+
+ char *
+F77_aloc(Len, whence) integer Len; char *whence;
+#else
+#include "stdlib.h"
+extern void exit_(integer*);
+
+ char *
+F77_aloc(integer Len, char *whence)
+#endif
+{
+ char *rv;
+ unsigned int uLen = (unsigned int) Len; /* for K&R C */
+
+ if (!(rv = malloc(uLen))) {
+ fprintf(stderr, "malloc(%u) failure in %s\n",
+ uLen, whence);
+ exit_(&memfailure);
+ }
+ return rv;
+ }
OpenPOWER on IntegriCloud