added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / workbench / tools / Edit / Version.h
blob8e2510ff4316651a5a8cafcc27b9b9a8608322df
1 /*** Constants identifying the prog: ***/
2 #define APPNAME "JanoEditor"
3 #define DATE "29.11.2001"
4 #define VERSION "1.1"
6 /*** Processor target type ***/
7 #if defined(__GNUC__) || defined(__SASC__)
8 #if defined (mc68060)
9 #define ARCH "mc68060"
10 #elif defined (mc68040)
11 #define ARCH "mc68040"
12 #elif defined (mc68030)
13 #define ARCH "mc68030"
14 #elif defined (mc68020)
15 #define ARCH "mc68020"
16 #else
17 #define ARCH "mc68000"
18 #endif
19 #else
21 /** INSERT OTHER COMPILER **/
22 #define ARCH "mc68000"
24 #endif
26 #ifdef __AROS__
27 #define TARGET "AROS"
28 #else
29 #define TARGET "CBM-AmigaDOS-" ARCH
30 #endif
32 #define SVERID APPNAME " " VERSION " http://perso.wanadoo.fr/cyrille.guillaume/"
33 #define SVER "$VER: " APPNAME " " VERSION " (" DATE ") for " TARGET