xref: /csrg-svn/lib/libc/net/sethostent.c (revision 24669)
124656Sbloom /*
224656Sbloom  * Copyright (c) 1985 Regents of the University of California.
324656Sbloom  * All rights reserved.  The Berkeley software License Agreement
424656Sbloom  * specifies the terms and conditions for redistribution.
524656Sbloom  */
624656Sbloom 
724656Sbloom #ifndef lint
8*24669Sbloom static char sccsid[] = "@(#)sethostent.c	1.2 (Berkeley) 09/10/85";
924656Sbloom #endif not lint
1024656Sbloom 
1124656Sbloom /*
1224656Sbloom  * These are dummy routines to allow old programs that used /etc/hosts
1324656Sbloom  * to compile and work with the BIND name server
1424656Sbloom  */
1524656Sbloom 
16*24669Sbloom sethostent(stayopen)
17*24669Sbloom {
18*24669Sbloom #ifdef lint
19*24669Sbloom stayopen = stayopen;
20*24669Sbloom #endif
21*24669Sbloom }
2224656Sbloom 
2324656Sbloom endhostent()	{}
24*24669Sbloom 
25*24669Sbloom sethostfile(name)
26*24669Sbloom char *name;
27*24669Sbloom {
28*24669Sbloom #ifdef lint
29*24669Sbloom name = name;
30*24669Sbloom #endif
31*24669Sbloom }
32