[BACK]Return to rlogin.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / rlogin

Diff for /src/usr.bin/rlogin/Attic/rlogin.c between version 1.26 and 1.27

version 1.26, 2001/11/16 23:57:12 version 1.27, 2001/11/19 19:02:16
Line 529 
Line 529 
 void  void
 writer()  writer()
 {  {
         register int bol, local, n;          int bol, local, n;
         char c;          char c;
   
         bol = 1;                        /* beginning of line */          bol = 1;                        /* beginning of line */
Line 605 
Line 605 
   
 void  void
 #ifdef __STDC__  #ifdef __STDC__
 echo(register char c)  echo(char c)
 #else  #else
 echo(c)  echo(c)
         register char c;          char c;
 #endif  #endif
 {  {
         register char *p;          char *p;
         char buf[8];          char buf[8];
   
         p = buf;          p = buf;
Line 953 
Line 953 
   
 u_int  u_int
 getescape(p)  getescape(p)
         register char *p;          char *p;
 {  {
         long val;          long val;
         int len;          int len;

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.27