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
7 getaavalue()
8 {
9 	return (aavalue);
10 }
11