From: richardbarry Date: Wed, 24 Nov 2010 20:53:55 +0000 (+0000) Subject: Delete the now obsolete syscalls.c file from the Red Suite LPC17xx demo. X-Git-Tag: V6.1.1~91 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d82d4b840dac9b67dadcf4bc2ef04a02458530e6;p=freertos Delete the now obsolete syscalls.c file from the Red Suite LPC17xx demo. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1166 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/Demo/CORTEX_LPC1768_GCC_RedSuite/src/syscalls.c b/Demo/CORTEX_LPC1768_GCC_RedSuite/src/syscalls.c deleted file mode 100644 index 3053cfa8b..000000000 --- a/Demo/CORTEX_LPC1768_GCC_RedSuite/src/syscalls.c +++ /dev/null @@ -1,82 +0,0 @@ -/* Don't need anything here. */ - -#include -#include - -int _read_r (struct _reent *r, int file, char * ptr, int len) -{ - ( void ) r; - ( void ) file; - ( void ) ptr; - ( void ) len; - return -1; -} - -/***************************************************************************/ - -int _lseek_r (struct _reent *r, int file, int ptr, int dir) -{ - ( void ) r; - ( void ) file; - ( void ) ptr; - ( void ) dir; - - return 0; -} - -/***************************************************************************/ - -int _write_r (struct _reent *r, int file, char * ptr, int len) -{ - ( void ) r; - ( void ) file; - ( void ) ptr; - ( void ) len; - - return 0; -} - -/***************************************************************************/ - -int _close_r (struct _reent *r, int file) -{ - ( void ) r; - ( void ) file; - - return 0; -} - -/***************************************************************************/ - -caddr_t _sbrk_r (struct _reent *r, int incr) -{ - ( void ) r; - ( void ) incr; - - return 0; -} - -/***************************************************************************/ - -int _fstat_r (struct _reent *r, int file, struct stat * st) -{ - ( void ) r; - ( void ) file; - ( void ) st; - - return 0; -} - -/***************************************************************************/ - -int _isatty_r(struct _reent *r, int fd) -{ - ( void ) r; - ( void ) fd; - - return 0; -} - - - -