Skip to content
Snippets Groups Projects
Commit c4dd8701 authored by Micah Elizabeth Scott's avatar Micah Elizabeth Scott
Browse files

Remove unused standard library glue

parent 8473b308
No related branches found
No related tags found
No related merge requests found
......@@ -217,51 +217,3 @@ void ResetHandler(void)
while (1) ;
}
char *__brkval = (char *)&_ebss;
void * _sbrk(int incr)
{
char *prev = __brkval;
__brkval += incr;
return prev;
}
int _read(int file, char *ptr, int len)
{
return 0;
}
int _write(int file, char *ptr, int len)
{
return 0;
}
int _close(int fd)
{
return -1;
}
int _lseek(int fd, long long offset, int whence)
{
return -1;
}
void _exit(int status)
{
while (1);
}
void __cxa_pure_virtual()
{
while (1);
}
int __cxa_guard_acquire (int *g)
{
return 1;
}
void __cxa_guard_release(int *g)
{
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment