Advertisement
FlyFar

stubs.c

Feb 28th, 2023
697
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.65 KB | Cybersecurity | 0 0
  1. /* dover */
  2.  
  3. /*  The version of crypt() used in the worm program has the same tables as
  4.  * Berkeley's 4.3 crypt(), but uses different code.  Since I don't know where
  5.  * we put our 4.2 tape I can't check it against that code to find the exact
  6.  * source.  I assume that it just a regualar crypt() routine with several
  7.  * interior functions declared static, perhaps tuned somewhat for speed on the
  8.  * VAX and Sun.
  9.  */
  10. crypt()
  11. { }
  12.    
  13. /* These might not be copyrighted, but I'm not taking the chance.  They are
  14.    obvious. */
  15. h_addr2host()
  16. {}
  17. h_name2host()
  18. {}
  19.  
  20. /*
  21.  * Local variables:
  22.  * compile-command: "make test"
  23.  * comment-column: 48
  24.  * End:
  25.  */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement