#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include "uart/uart.h"
Go to the source code of this file.
Functions |
int | _read_r (struct _reent *r, int file, char *ptr, int len) |
int | _lseek_r (struct _reent *r, int file, int ptr, int dir) |
int | _write_r (struct _reent *r, int file, char *ptr, int len) |
int | _close_r (struct _reent *r, int file) |
register char *stack_ptr | asm ("sp") |
caddr_t | _sbrk_r (struct _reent *r, int incr) |
int | _fstat_r (struct _reent *r, int file, struct stat *st) |
int | _isatty_r (struct _reent *r, int fd) |
Function Documentation
int _close_r |
( |
struct _reent * |
r, |
|
|
int |
file | |
|
) |
| | |
int _fstat_r |
( |
struct _reent * |
r, |
|
|
int |
file, |
|
|
struct stat * |
st | |
|
) |
| | |
int _isatty_r |
( |
struct _reent * |
r, |
|
|
int |
fd | |
|
) |
| | |
int _lseek_r |
( |
struct _reent * |
r, |
|
|
int |
file, |
|
|
int |
ptr, |
|
|
int |
dir | |
|
) |
| | |
int _read_r |
( |
struct _reent * |
r, |
|
|
int |
file, |
|
|
char * |
ptr, |
|
|
int |
len | |
|
) |
| | |
caddr_t _sbrk_r |
( |
struct _reent * |
r, |
|
|
int |
incr | |
|
) |
| | |
int _write_r |
( |
struct _reent * |
r, |
|
|
int |
file, |
|
|
char * |
ptr, |
|
|
int |
len | |
|
) |
| | |
register char* stack_ptr asm |
( |
"sp" |
|
) |
|