2 * The Regina Rexx Interpreter
3 * Copyright (C) 1992-1994 Anders Christensen <anders@pvv.unit.no>
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
15 * You should have received a copy of the GNU Library General Public
16 * License along with this library; if not, write to the Free
17 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #if defined(WIN32) && defined(__IBMC__)
24 # pragma warning(default: 4115 4201 4214)
27 # if defined(WIN32) && (defined(__WATCOMC__) || defined(__BORLANDC__))
31 # if defined(_MSC_VER)
34 /* Stupid MSC can't compile own headers without warning at least in VC 5.0 */
35 # pragma warning(disable: 4115 4201 4214 4514)
39 # pragma warning(default: 4115 4201 4214)
45 #define DONT_TYPEDEF_PFN
46 #ifndef RXLIB /* need __regina_faked_main which is known with RXLIB only */
51 int main(int argc
, char *argv
[])
54 rc
= __regina_faked_main(argc
,argv
);