mirror of
https://github.com/Tilo-K/tstd.git
synced 2026-01-09 14:31:01 +00:00
16 lines
238 B
C
16 lines
238 B
C
//
|
|
// Created by tilok on 19.11.2025.
|
|
//
|
|
|
|
#ifndef TSTD_HELPER_H
|
|
#define TSTD_HELPER_H
|
|
#include <stdio.h>
|
|
|
|
#define OOM(ptr) { \
|
|
if(ptr == NULL) { \
|
|
puts("Out of memory"); \
|
|
exit(137); \
|
|
} \
|
|
}
|
|
|
|
#endif //TSTD_HELPER_H
|