Metropoli BBS
VIEWER: aplenv.h MODE: TEXT (ASCII)
/* aplenv.h Copyright 1996 by Thomas Glen Smith */
/* defines the environment in which APL will run */
#if !defined(APLENV)
#define APLENV
#define APL_DOS 0 /* DOS=1, Linux=0 */
#if APL_DOS
#define APL_DOS_H <dos.h>
#else
#define APL_DOS_H "apldummy.h"
#endif
#endif
[ RETURN TO DIRECTORY ]