summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/c4x/c4xsim/include/simio.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2010-06-11 12:28:40 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2010-06-11 12:28:40 +0000
commit3490d70a08dbecee70fab0ebdd263b53311b44df (patch)
treec0f20636620a9b7a2789cbdbc1b080accd22d9a4 /c/src/lib/libbsp/c4x/c4xsim/include/simio.h
parent2010-06-11 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-3490d70a08dbecee70fab0ebdd263b53311b44df.tar.bz2
Remove (Abandoned).
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/c4x/c4xsim/include/simio.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/c/src/lib/libbsp/c4x/c4xsim/include/simio.h b/c/src/lib/libbsp/c4x/c4xsim/include/simio.h
deleted file mode 100644
index 782e88c258..0000000000
--- a/c/src/lib/libbsp/c4x/c4xsim/include/simio.h
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * C4x simulator IO interface routines based on code provided
- * by Herman ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
- *
- * $Id$
- */
-
-#ifndef __C4X_SIMIO_IFACE_h
-#define __C4X_SIMIO_IFACE_h
-
-#include <stdio.h>
-
-void sim_exit(void);
-int sim_open(const char *path, int flags, int fno);
-int sim_close(int fno);
-int sim_read(int fno, char *buf, unsigned count);
-int sim_write(int fno, const char *buf, unsigned count);
-fpos_t sim_lseek(int fno, fpos_t offset, int origin);
-int sim_unlink(const char *path);
-int sim_rename(const char *old, const char *new);
-char *sim_getenv(const char *str);
-int sim_gettime(void);
-int sim_getclock(void);
-
-#endif