1*11038SRao.Shoaib@Sun.COM /* 2*11038SRao.Shoaib@Sun.COM * Copyright 2009 Sun Microsystems, Inc. All rights reserved. 3*11038SRao.Shoaib@Sun.COM * Use is subject to license terms. 4*11038SRao.Shoaib@Sun.COM */ 5*11038SRao.Shoaib@Sun.COM 6*11038SRao.Shoaib@Sun.COM #include <port_before.h> 7*11038SRao.Shoaib@Sun.COM #include <resolv.h> 8*11038SRao.Shoaib@Sun.COM #include <arpa/inet.h> 9*11038SRao.Shoaib@Sun.COM #include <port_after.h> 10*11038SRao.Shoaib@Sun.COM 11*11038SRao.Shoaib@Sun.COM #undef p_option 12*11038SRao.Shoaib@Sun.COM /* extern const char * isc_p_option(); */ p_option(uint_t option)13*11038SRao.Shoaib@Sun.COMconst char *p_option(uint_t option) { 14*11038SRao.Shoaib@Sun.COM return (isc_p_option((ulong_t)option)); 15*11038SRao.Shoaib@Sun.COM } 16*11038SRao.Shoaib@Sun.COM #pragma weak __p_option = p_option 17*11038SRao.Shoaib@Sun.COM 18*11038SRao.Shoaib@Sun.COM #undef p_secstodate 19*11038SRao.Shoaib@Sun.COM /* extern char * isc_p_secstodate (); */ p_secstodate(uint_t secs)20*11038SRao.Shoaib@Sun.COMchar *p_secstodate(uint_t secs) { 21*11038SRao.Shoaib@Sun.COM return (isc_p_secstodate((ulong_t)secs)); 22*11038SRao.Shoaib@Sun.COM } 23*11038SRao.Shoaib@Sun.COM #pragma weak __p_secstodate = p_secstodate 24