Skip to content
Snippets Groups Projects
Commit 8fe96805 authored by neil's avatar neil
Browse files

More inlines giving me guff on Apple

git-svn-id: http://svn.net-core.org/repos/t-engine4@626 51575b47-30f0-44d4-a5cc-537603b46e54
parent 68515b69
No related branches found
No related tags found
No related merge requests found
......@@ -56,10 +56,22 @@
#endif
#endif
inline uint32_t gen_rand32(void);
inline uint64_t gen_rand64(void);
inline void fill_array32(uint32_t array[], int size);
inline void fill_array64(uint64_t array[], int size);
#ifndef __APPLE__
inline
#endif
uint32_t gen_rand32(void);
#ifndef __APPLE__
inline
#endif
uint64_t gen_rand64(void);
#ifndef __APPLE__
inline
#endif
void fill_array32(uint32_t array[], int size);
#ifndef __APPLE__
inline
#endif
void fill_array64(uint64_t array[], int size);
void init_gen_rand(uint32_t seed);
void init_by_array(uint32_t init_key[], int key_length);
char *get_idstring(void);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment