diff options
Diffstat (limited to 'pthread.h')
-rw-r--r-- | pthread.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -887,8 +887,9 @@ int * _errno( void ); ( *(_result) = *localtime( (_clock) ), \ (_result) ) +/* The redundant test avoids unused variable warnings */ #define rand_r( _seed ) \ - rand() + ((seed == seed) ? rand() : rand()) #ifdef __cplusplus |