/* $NetBSD: vtof.c,v 1.1.1.1 2012/03/23 21:20:10 christos Exp $ */ #include "ipf.h" int vtof(version) int version; { #ifdef USE_INET6 if (version == 6) return AF_INET6; #endif if (version == 4) return AF_INET; if (version == 0) return AF_UNSPEC; return -1; } type='application/atom+xml'/>
summaryrefslogtreecommitdiff
path: root/sys/dev/raidframe/rf_engine.h
AgeCommit message (Expand)Author
2005-12-11merge ktrace-lwp.christos
2005-02-27nuke trailing whitespaceperry
2004-03-04More function prototype cleanups.oster