1 /* $OpenBSD: weak.c,v 1.2 2002/11/13 21:51:04 fgsch Exp $ */ 2 3 /* 4 * Public domain. 2002, Federico Schwindt <fgsch@openbsd.org>. 5 */ 6 7 #include <sys/cdefs.h> 8 #include "defs.h" 9 10 int 11 weak_func() 12 { 13 return (WEAK_REF); 14 } 15 16 __weak_alias(func,weak_func); 17