diff options
Diffstat (limited to 'src/termcap.c')
-rw-r--r-- | src/termcap.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/termcap.c b/src/termcap.c index 411ab1f2fbe..291857697d8 100644 --- a/src/termcap.c +++ b/src/termcap.c @@ -144,9 +144,6 @@ find_capability (bp, cap) return NULL; } -/* These are already defined in the System framework in Mac OS X and - cause prebinding to fail. */ -#ifndef MAC_OSX int tgetnum (cap) char *cap; @@ -180,7 +177,6 @@ tgetstr (cap, area) return NULL; return tgetst1 (ptr, area); } -#endif /* MAC_OSX */ #ifdef IS_EBCDIC_HOST /* Table, indexed by a character in range 0200 to 0300 with 0200 subtracted, @@ -345,11 +341,7 @@ short ospeed; int tputs_baud_rate; #endif -/* Already defined in the System framework in Mac OS X and causes - prebinding to fail. */ -#ifndef MAC_OSX char PC; -#endif /* MAC_OSX */ #ifndef emacs /* Actual baud rate if positive; @@ -368,9 +360,6 @@ static int speeds[] = #endif /* not emacs */ -/* Already defined in the System framework in Mac OS X and causes - prebinding to fail. */ -#ifndef MAC_OSX void tputs (str, nlines, outfun) register char *str; @@ -433,7 +422,6 @@ tputs (str, nlines, outfun) while (padcount-- > 0) (*outfun) (PC); } -#endif /* MAC_OSX */ /* Finding the termcap entry in the termcap data base. */ @@ -505,9 +493,6 @@ valid_filename_p (fn) 0 if the data base is accessible but the type NAME is not defined in it, and some other value otherwise. */ -/* Already defined in the System framework in Mac OS X and causes - prebinding to fail. */ -#ifndef MAC_OSX int tgetent (bp, name) char *bp, *name; @@ -666,7 +651,6 @@ tgetent (bp, name) term_entry = bp; return 1; } -#endif /* MAC_OSX */ /* Given file open on FD and buffer BUFP, scan the file from the beginning until a line is found |