1 #ifndef CLIB_RANDOM_PROTOS_H 2 #define CLIB_RANDOM_PROTOS_H 3 4 /* 5 random C prototypes 6 7 Copyright © 2003 The MorphOS Development Team, All Rights Reserved. 8 9 */ 10 11 #ifndef EXEC_TYPES_H 12 #include <exec/types.h> 13 #endif 14 15 16 #ifdef __cplusplus 17 extern "C" { 18 #endif /* __cplusplus */ 19 20 ULONG Random(void); 21 UBYTE RandomByte(void); 22 void RandomStir(void); 23 void RandomBytes(APTR buf, LONG buflen); 24 25 #ifdef __cplusplus 26 } 27 #endif /* __cplusplus */ 28 29 30 #endif /* CLIB_RANDOM_PROTOS_H */