mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
12 lines
184 B
C
12 lines
184 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");
|
||
|
}
|