xref: /openbsd-src/regress/libexec/ld.so/weak/libweak/weak.c (revision 4a39ccd02c887d988c1a5398dd2142879056da5f)
1 /*	$OpenBSD: weak.c,v 1.3 2012/12/05 23:20:08 deraadt Exp $	*/
2 
3 /*
4  * Public domain. 2002, Federico Schwindt <fgsch@openbsd.org>.
5  */
6 
7 #include <sys/types.h>
8 #include "defs.h"
9 
10 int
weak_func()11 weak_func()
12 {
13 	return (WEAK_REF);
14 }
15 
16 __weak_alias(func,weak_func);
17