out_of_memory.c 184 B

123456789101112
  1. /*
  2. * Standard implementation of the out_of_memory function called by our
  3. * malloc wrappers.
  4. */
  5. #include "putty.h"
  6. void out_of_memory(void)
  7. {
  8. modalfatalbox("Out of memory");
  9. }