Files
harbour-core/harbour/source/compiler/harbour.c
1999-09-01 13:57:59 +00:00

25 lines
371 B
C

/*
* $Id$
*/
#include "hbsetup.h"
#if defined(DOS) && defined(__BORLANDC__)
#include <limits.h>
extern unsigned _stklen = UINT_MAX;
#endif
extern int harbour_main( int argc, char * argv[] );
int main( int argc, char * argv[] )
{
return harbour_main( argc, argv );
}
#ifdef __IBMCPP__
int isatty ( int handle )
{
return ( handle < 4 ) ? 1 : 0;
}
#endif