Index: exceptions.c
===================================================================
RCS file: /cvs/public/parrot/exceptions.c,v
retrieving revision 1.17
diff -u -a -r1.17 exceptions.c
--- exceptions.c	10 Jul 2003 16:56:46 -0000	1.17
+++ exceptions.c	11 Jul 2003 13:29:01 -0000
@@ -119,7 +119,7 @@
     } while (1);
     m = string_to_cstring(interpreter, message);
     if (m && *m) {
-        fprintf(stderr, m);
+        fputs(m, stderr);
         if (m[strlen(m-1)] != '\n')
             fprintf(stderr, "%c", '\n');
     }



malloc.h is deprecated on FreeBSD 5, and will make various
configuration tests fail.  The following patch tests for the validity
of malloc.h, and uses either malloc.h or stdlib.h in the tests.

