home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume27 / bootptest-1.1 / part01 / vdgencmu.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-11  |  248 b   |  18 lines

  1.  
  2. /* This program creates an option template file in CMU format. */
  3.  
  4. struct in_addr { long s_addr; };
  5.  
  6. #include "bootp.h"
  7.  
  8. struct cmu_vend vend = {
  9.     "CMU",    /* magic number for CMU data */
  10.     0
  11. };
  12.  
  13.  
  14. main() {
  15.     write(1, &vend, sizeof(vend));
  16.     exit(0);
  17. }
  18.