1 
2 #ifndef randombytes_nativeclient_H
3 #define randombytes_nativeclient_H
4 
5 #ifdef __native_client__
6 
7 # include "export.h"
8 # include "randombytes.h"
9 
10 # ifdef __cplusplus
11 extern "C" {
12 # endif
13 
14 SODIUM_EXPORT
15 extern struct randombytes_implementation randombytes_nativeclient_implementation;
16 
17 # ifdef __cplusplus
18 }
19 # endif
20 
21 #endif
22 
23 #endif
24