1 #include <options.h>
2 #include <wutils.h>
3 
4 u8b try_lock( u8b *key )
5 {
6   if( *key == TRUE )
7     return FALSE;
8   return TRUE;
9 }
10