aa.c revision 1.1
1#include <sys/types.h>
2
3static int64_t aavalue __attribute__((section(".openbsd.randomdata")));
4
5int64_t
6getaavalue()
7{
8	return (aavalue);
9}
10