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