xref: /openbsd-src/regress/libexec/ld.so/lazy/libbar/bar.c (revision 20dfae25986a77726e4c228fbf0d7dd19b31d9ff)
1 /*	$OpenBSD: bar.c,v 1.1.1.1 2008/01/02 18:36:59 matthieu Exp $ */
2 /* Public Domain, 2008, Matthieu Herrb */
3 
4 #include <stdio.h>
5 
6 int
bar(void)7 bar(void)
8 {
9 	printf("bar\n");
10 	return 0;
11 }
12