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