diff options
Diffstat (limited to 'apps/plugins/lua/getc.c')
| -rw-r--r-- | apps/plugins/lua/getc.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/apps/plugins/lua/getc.c b/apps/plugins/lua/getc.c deleted file mode 100644 index 84a280e..0000000 --- a/apps/plugins/lua/getc.c +++ /dev/null @@ -1,10 +0,0 @@ -#include "rocklibc.h" - -int PREFIX(getc)(int fd) -{ - unsigned char c; - if (rb->read(fd, &c, 1)) - return c; - else - return EOF; -} |