diff options
Diffstat (limited to 'lib/libc/rpc/svc_udp.c')
-rw-r--r-- | lib/libc/rpc/svc_udp.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/rpc/svc_udp.c b/lib/libc/rpc/svc_udp.c index b494d92c057..a1ca7e3acfa 100644 --- a/lib/libc/rpc/svc_udp.c +++ b/lib/libc/rpc/svc_udp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: svc_udp.c,v 1.23 2015/09/01 19:54:01 deraadt Exp $ */ +/* $OpenBSD: svc_udp.c,v 1.24 2015/09/13 15:36:56 guenther Exp $ */ /* * Copyright (c) 2010, Oracle America, Inc. @@ -159,6 +159,7 @@ svcudp_bufcreate(int sock, u_int sendsz, u_int recvsz) } return (xprt); } +DEF_WEAK(svcudp_bufcreate); SVCXPRT * svcudp_create(int sock) @@ -166,6 +167,7 @@ svcudp_create(int sock) return(svcudp_bufcreate(sock, UDPMSGSIZE, UDPMSGSIZE)); } +DEF_WEAK(svcudp_create); /* ARGSUSED */ static enum xprt_stat |