These are the examples provided for [[/users/frank26080115/libraries/LPC1700CMSIS_Lib/]] Note, the entire "program" is not compilable!

Revision:
0:bf7b9fba3924
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/EMAC/uIP/common/syscalls.c	Sun Mar 20 05:38:56 2011 +0000
@@ -0,0 +1,85 @@
+/* Don't need anything here. */
+/* Used with GNU compiler only! */
+
+#include <stdlib.h>
+#ifndef __IAR_SYSTEMS_ICC__
+#include <sys/stat.h>
+#endif
+
+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;
+}
+
+
+
+