removed some global functions from io.cpp

db4
Phil Dawes 2009-08-17 21:37:18 +01:00
parent fc5c51e2cd
commit 0397f92569
2 changed files with 0 additions and 11 deletions

View File

@ -21,10 +21,6 @@ void factorvm::init_c_io()
userenv[STDERR_ENV] = allot_alien(F,(cell)stderr);
}
void init_c_io()
{
return vm->init_c_io();
}
void factorvm::io_error()
{
@ -36,10 +32,6 @@ void factorvm::io_error()
general_error(ERROR_IO,tag_fixnum(errno),F,NULL);
}
void io_error()
{
return vm->io_error();
}
inline void factorvm::vmprim_fopen()
{

3
vm/io.hpp Normal file → Executable file
View File

@ -1,9 +1,6 @@
namespace factor
{
void init_c_io();
void io_error();
PRIMITIVE(fopen);
PRIMITIVE(fgetc);
PRIMITIVE(fread);