mirror of https://gitee.com/Nocallback/dejagnu.git
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.
19 lines
288 B
19 lines
288 B
#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 ();
|
|
}
|
|
|