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