comparison src/cm.c @ 108432:b5eb3c74f897

Merge from mainline.
author Katsumi Yamaoka <yamaoka@jpl.org>
date Sat, 13 Mar 2010 11:15:58 +0000
parents 5a46c741f65e
children 2bc9a0c04c87
comparison
equal deleted inserted replaced
108431:c8f7c08f4695 108432:b5eb3c74f897
31 31
32 32
33 /* For now, don't try to include termcap.h. On some systems, 33 /* For now, don't try to include termcap.h. On some systems,
34 configure finds a non-standard termcap.h that the main build 34 configure finds a non-standard termcap.h that the main build
35 won't find. */ 35 won't find. */
36
37 #if defined HAVE_TERMCAP_H && 0
38 #include <termcap.h>
39 #else
40 extern void tputs P_ ((const char *, int, int (*)(int))); 36 extern void tputs P_ ((const char *, int, int (*)(int)));
41 extern char *tgoto P_ ((const char *, int, int)); 37 extern char *tgoto P_ ((const char *, int, int));
42 #endif
43 38
44 #define BIG 9999 /* 9999 good on VAXen. For 16 bit machines 39 #define BIG 9999 /* 9999 good on VAXen. For 16 bit machines
45 use about 2000.... */ 40 use about 2000.... */
46 41
47 extern char *BC, *UP; 42 extern char *BC, *UP;