summaryrefslogtreecommitdiff
path: root/bsp/libwrap/sys/_exit.c
blob: 011464f54c9467160d32e5268f7857af26d3f98f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* See LICENSE of license details. */

#include <unistd.h>
#include "platform.h"
#include "weak_under_alias.h"

void __wrap_exit(int code)
{
  const char message[] = "\nProgam has exited with code:";

  write(STDERR_FILENO, message, sizeof(message) - 1);
  write_hex(STDERR_FILENO, code);
  write(STDERR_FILENO, "\n", 1);

  for (;;);
}
weak_under_alias(exit);