You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/* 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 (;;);
|
|
}
|