home *** CD-ROM | disk | FTP | other *** search
- /*
- * Dummy header file to take the place of <stdio.h> for MicroEMACS
- * for the Macintosh (LightSpeedC¬), which doesn't use stdio.
- * When using LightSpeedC¬, copy this file into the same folder as
- * LightSpeedC¬, and backup the "real" stdio.h elsewhere.
- * When using MPW, the Makefile takes care of the search path.
- * The following lines determine which compiler is used...
- */
- #ifndef macintosh /* MPW C 2.0.2 */
- #ifndef MPU68000 /* Aztec C 3.6c */
- #define LSC 1
- #define MPW 0
- #endif
- #endif
- #ifndef LSC
- #define LSC 0
- #define MPW 1
- #endif
- #if LSC
- #include <FileMgr.h>
- #define PASS_STR(a) a
- #endif
- #if MPW
- #include <Files.h>
- #endif
- #ifndef NULL
- #define NULL 0L
- #endif
- extern Point where;
- extern exit();
- extern macbeep();
- extern char ourAppName[32]; /* Pascal string naming program. */
- extern short ourRefNum; /* RefNum of application file. */
- extern short ourVRefNum; /* WDRefNum of application file. */
- extern short _iovrefnum;/* Current default directory for reads. */
-