Files
2024-02-13 13:37:55 -06:00

12 lines
195 B
C

/*
* Standard implementation of the out_of_memory function called by our
* malloc wrappers.
*/
#include "putty.h"
void out_of_memory(void)
{
modalfatalbox("Out of memory");
}