diff options
author | Eugene Sandulenko | 2004-05-02 00:06:34 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2004-05-02 00:06:34 +0000 |
commit | 6722103aa80e45d686488d149f9c2debebd92be9 (patch) | |
tree | b71473e956f61e8e5a23bcb81f2b0844a3b5691b /saga | |
parent | 90a876798ae05b865c25a8ee98f20d1695315984 (diff) | |
download | scummvm-rg350-6722103aa80e45d686488d149f9c2debebd92be9.tar.gz scummvm-rg350-6722103aa80e45d686488d149f9c2debebd92be9.tar.bz2 scummvm-rg350-6722103aa80e45d686488d149f9c2debebd92be9.zip |
Removed last sys* file
svn-id: r13727
Diffstat (limited to 'saga')
-rw-r--r-- | saga/reinherit.h | 7 | ||||
-rw-r--r-- | saga/sys_interface.h | 36 |
2 files changed, 5 insertions, 38 deletions
diff --git a/saga/reinherit.h b/saga/reinherit.h index 7a45b558c3..4ebb09ce19 100644 --- a/saga/reinherit.h +++ b/saga/reinherit.h @@ -32,8 +32,6 @@ #include "base/engine.h" -#include "sys_interface.h" - namespace Saga { #define R_MAXPATH 512 @@ -46,6 +44,11 @@ namespace Saga { #define R_MEMFAIL_MSG "Memory allocation error." +#define R_STDOUT stdout +#define R_STDERR stderr + +#define R_printf fprintf + // Define opaque types // r_rscfile diff --git a/saga/sys_interface.h b/saga/sys_interface.h deleted file mode 100644 index 6658e80523..0000000000 --- a/saga/sys_interface.h +++ /dev/null @@ -1,36 +0,0 @@ -/* ScummVM - Scumm Interpreter - * Copyright (C) 2004 The ScummVM project - * - * The ReInherit Engine is (C)2000-2003 by Daniel Balsom. - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. - - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * - * $Header$ - * - */ - -#ifndef REINHERIT_SYSINTERFACE_H -#define REINHERIT_SYSINTERFACE_H - -namespace Saga { - -#define R_STDOUT stdout -#define R_STDERR stderr - -#define R_printf fprintf - -} // End of namespace Saga - -#endif |