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 7*26636Sdonn #if defined(LIBC_SCCS) && !defined(lint) 8*26636Sdonn static char sccsid[] = "@(#)sethostent.c 6.2 (Berkeley) 03/09/86"; 9*26636Sdonn #endif LIBC_SCCS and 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 1624669Sbloom sethostent(stayopen) 1724669Sbloom { 1824669Sbloom #ifdef lint 1924669Sbloom stayopen = stayopen; 2024669Sbloom #endif 2124669Sbloom } 2224656Sbloom 2324656Sbloom endhostent() {} 2424669Sbloom 2524669Sbloom sethostfile(name) 2624669Sbloom char *name; 2724669Sbloom { 2824669Sbloom #ifdef lint 2924669Sbloom name = name; 3024669Sbloom #endif 3124669Sbloom } 32