1// 2// Created by maks on 15.01.2025. 3// 4 5#ifndef POJAVLAUNCHER_STDIO_IS_H 6#define POJAVLAUNCHER_STDIO_IS_H 7 8#include <stdbool.h> 9 10_Noreturn void nominal_exit(int code, bool is_signal); 11 12#endif //POJAVLAUNCHER_STDIO_IS_H 13 14