home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / archimedes / arascr.c < prev    next >
C/C++ Source or Header  |  2020-01-01  |  521b  |  19 lines

  1. /* -> c.ckascr
  2.  */
  3.  
  4. #include <stdio.h>
  5.  
  6. char *loginv = "Arthur Script Command (not yet implemented) 1 July 87";
  7.  
  8. /*  C K A S C R  --  Login script for logging onto remote system */
  9. /*  A R T H U R    --  temp dummy                                */ 
  10. /*  L O G I N    --  Login to remote system */
  11.  
  12. int
  13. login(cmdstr) char *cmdstr; {
  14.   printf("\nThe script command has not yet been implemented\n");
  15.   printf("It needs a Arthur feature which is not available in\n");
  16.   printf("versions 1.2 or before.\n\n");
  17.   return(-2);
  18. }
  19.