xref: /openbsd-src/regress/libexec/ld.so/randomdata/libaa/aa.c (revision 75795c7bb7900317a5c55bdb22c0c5a0ef978a42)
1 /*	$OpenBSD: aa.c,v 1.3 2017/08/01 13:05:55 deraadt Exp $	*/
2 #include <sys/types.h>
3 
4 int64_t aavalue __attribute__((section(".openbsd.randomdata")));
5 
6 int64_t
getaavalue()7 getaavalue()
8 {
9 	return (aavalue);
10 }
11