1 /*- 2 * Copyright (c) 1991 The Regents of the University of California. 3 * All rights reserved. 4 * 5 * %sccs.include.redist.c% 6 */ 7 8 #ifndef lint 9 static char sccsid[] = "@(#)getent.c 5.3 (Berkeley) 01/20/93"; 10 #endif /* not lint */ 11 12 /*ARGSUSED*/ 13 getent(cp, name) 14 char *cp, *name; 15 { 16 return(0); 17 } 18 19 #ifndef __svr4__ 20 /*ARGSUSED*/ 21 char * 22 getstr(cp, cpp) 23 char *cp, **cpp; 24 { 25 return(0); 26 } 27 #endif 28