aa.c revision 1.2
1/*	$OpenBSD: aa.c,v 1.2 2015/01/20 04:41:01 krw Exp $	*/
2#include <sys/types.h>
3
4static int64_t aavalue __attribute__((section(".openbsd.randomdata")));
5
6int64_t
7getaavalue()
8{
9	return (aavalue);
10}
11