mirror of
https://github.com/trustedsec/LLVM-Obfuscation-Experiments
synced 2026-06-08 17:57:15 +00:00
12 lines
195 B
C
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");
|
|
}
|