/usr/include/libMems-1.6/libMems/twister.h is in libmems-1.6-dev 1.6.0+4725-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #ifndef __TWISTER_H__
#define __TWISTER_H__
#ifdef __cplusplus
extern "C" {
#endif
void SetTwisterSeed (unsigned long seed);
unsigned long CreateTwisterSeed(void);
double RandTwisterDouble (void);
unsigned RandTwisterUnsigned(void);
#ifdef __cplusplus
}
#endif
#endif // __TWISTER_H__
|