mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-07 01:15:14 +01:00
18 lines
312 B
C
Executable file
18 lines
312 B
C
Executable file
/* See LICENSE of license details. */
|
|
|
|
#include <unistd.h>
|
|
|
|
#include "stub.h"
|
|
|
|
|
|
void _exit(int code)
|
|
{
|
|
// const char message[] = "\nProgram has exited with code:";
|
|
|
|
// write(STDERR_FILENO, message, sizeof(message) - 1);
|
|
// write_hex(STDERR_FILENO, code);
|
|
// write(STDERR_FILENO, "\n", 1);
|
|
|
|
for (;;);
|
|
}
|