home *** CD-ROM | disk | FTP | other *** search
- --- ./screen.c.rtr Mon May 11 14:43:38 1992
- +++ ./screen.c Sat Dec 30 09:37:56 1995
- @@ -575,8 +575,10 @@
- stopdisp()
- {
- deraw();
- +#if 0
- resetkbd();
- endwin();
- +#endif
- #ifdef XENIX2_3
- (void) ioctl (fileno (stdin), TCSETAW, & tmio);
- #endif
- @@ -603,7 +605,7 @@
- void
- goraw()
- {
- -#if SYSV2 || SYSV3
- +#if SYSV2 || SYSV3 || 1
- fixterm();
- #else /* SYSV2 || SYSV3 */
- cbreak();
- @@ -622,14 +624,15 @@
- (void) move (LINES - 1, 0);
- (void) clrtoeol();
- (void) refresh();
- -#if SYSV2 || SYSV3
- +#if SYSV2 || SYSV3 || 1
- resetterm();
- + system("/bin/stty sane");
- #else
- nocbreak();
- nl();
- echo();
- -#endif
- resetkbd();
- +#endif
- }
-
- #endif /* VMS */
- --- ./interp.c.rtr Sat Dec 30 09:37:55 1995
- +++ ./interp.c Sat Dec 30 09:44:21 1995
- @@ -551,7 +551,7 @@
- int which;
- double when;
- {
- - long time();
- + time_t time();
-
- static long t_cache;
- static struct tm tm_cache;
- @@ -589,14 +589,14 @@
- char *s;
- {
- #ifndef _AIX
- - char *strtof();
- + char *sc_strtof();
- #endif
- double v;
-
- if (!s)
- return((double)0);
-
- - (void)strtof(s, &v);
- + (void)sc_strtof(s, &v);
- scxfree(s);
- return(v);
- }
- --- ./lex.c.rtr Mon May 11 14:43:36 1992
- +++ ./lex.c Sat Dec 30 09:42:19 1995
- @@ -63,7 +63,7 @@
- extern YYSTYPE yylval;
- #endif /* hpux */
-
- -char *strtof();
- +char *sc_strtof();
-
- jmp_buf wakeup;
- jmp_buf fpe_buf;
- @@ -192,7 +192,7 @@
- }
- if (*p=='.' || *p == 'e' || *p == 'E') {
- ret = FNUMBER;
- - p = strtof(nstart, &yylval.fval);
- + p = sc_strtof(nstart, &yylval.fval);
- } else {
- /* A NUMBER must hold at least MAXROW and MAXCOL */
- /* This is consistent with a short row and col in struct ent */
- @@ -655,7 +655,7 @@
- */
-
- char *
- -strtof(p, res)
- +sc_strtof(p, res)
- register char *p;
- double *res;
- {
-