summaryrefslogtreecommitdiff
path: root/src/prng
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2018-09-11 12:32:46 -0400
committerRich Felker <dalias@aerifal.cx>2018-09-12 14:34:34 -0400
commit7e399fabd3db2c528b5982803eeba2841f547695 (patch)
tree7dd5b5bf30e99dd0f622203017bc9364e8a74aab /src/prng
parentb6e59cd925cbe6c0f23cf46828d47e6e7edd17c9 (diff)
downloadmusl-7e399fabd3db2c528b5982803eeba2841f547695.tar.gz
apply hidden visibility to various remaining internal interfaces
Diffstat (limited to 'src/prng')
-rw-r--r--src/prng/rand48.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/prng/rand48.h b/src/prng/rand48.h
index 4ed6ae52..55cbec1c 100644
--- a/src/prng/rand48.h
+++ b/src/prng/rand48.h
@@ -1,4 +1,5 @@
#include <stdint.h>
+#include <features.h>
-uint64_t __rand48_step(unsigned short *xi, unsigned short *lc);
-extern unsigned short __seed48[7];
+hidden uint64_t __rand48_step(unsigned short *xi, unsigned short *lc);
+extern hidden unsigned short __seed48[7];