aboutsummaryrefslogtreecommitdiff
path: root/i960glue.c
blob: 0dc569d1c57a6cd32c751b3142fe8513be70d87e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "../newlib/libc/ctype/ctype_.c"
#include "../newlib/libc/stdlib/strtol.c"
#include "../newlib/libc/stdlib/atoi.c"
#include "../newlib/libc/reent/impure.c"


/* these are for ld -r -wrap */

void
__real_exit (int code)
{
  exit (code);
}

void
__real_abort (void)
{
  abort ();
}