[project @ 1996-01-08 20:28:12 by partain]
[ghc-hetmet.git] / ghc / runtime / hooks / OutOfVM.lc
1 \begin{code}
2 #include "rtsdefs.h"
3
4 void
5 MallocFailHook (request_size)
6   I_ request_size;    /* in bytes */
7 {
8     fprintf(stderr, "malloc: failed on request for %lu bytes\n", request_size);
9 }
10 \end{code}