xref: /openbsd/regress/libexec/ld.so/lazy/libbar/bar.c (revision 898184e3)
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
7 bar(void)
8 {
9 	printf("bar\n");
10 	return 0;
11 }
12