-
Notifications
You must be signed in to change notification settings - Fork 4
/
syscalls.c
78 lines (65 loc) · 1.3 KB
/
syscalls.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/**************************************************************************//*****
* @file stdio.c
* @brief Implementation of newlib syscall
********************************************************************************/
#include <stdio.h>
#include <stdarg.h>
#include <sys/types.h>
#include <sys/stat.h>
#undef errno
extern int errno;
extern int _end;
__attribute__ ((used))
caddr_t _sbrk ( int incr )
{
static unsigned char *heap = NULL;
unsigned char *prev_heap;
if (heap == NULL) {
heap = (unsigned char *)&_end;
}
prev_heap = heap;
heap += incr;
return (caddr_t) prev_heap;
}
__attribute__ ((used))
int link(char *old, char *new) {
return -1;
}
__attribute__ ((used))
int _close(int file)
{
return -1;
}
__attribute__ ((used))
int _fstat(int file, struct stat *st)
{
st->st_mode = S_IFCHR;
return 0;
}
__attribute__ ((used))
int _isatty(int file)
{
return 1;
}
__attribute__ ((used))
int _lseek(int file, int ptr, int dir)
{
return 0;
}
__attribute__ ((used))
int _read(int file, char *ptr, int len)
{
return 0;
}
__attribute__ ((used))
int _write(int file, char *ptr, int len)
{
return len;
}
__attribute__ ((used))
void abort(void)
{
/* Abort called */
while(1);
}
/* --------------------------------- End Of File ------------------------------ */