home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
unix
/
volume27
/
bootptest-1.1
/
part01
/
vdgencmu.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
C/C++ Source or Header
|
1993-10-11
|
248 b
|
18 lines
/* This program creates an option template file in CMU format. */
struct in_addr { long s_addr; };
#include "bootp.h"
struct cmu_vend vend = {
"CMU", /* magic number for CMU data */
0
};
main() {
write(1, &vend, sizeof(vend));
exit(0);
}