mirror of
https://github.com/tezc/sc.git
synced 2025-01-28 07:03:06 +08:00
c221478638
* Switched to tabs for indentation, amalgamation tool works with tabs only
16 lines
175 B
C
16 lines
175 B
C
#include "sc_mutex.h"
|
|
|
|
int main()
|
|
{
|
|
struct sc_mutex mutex;
|
|
|
|
sc_mutex_init(&mutex);
|
|
|
|
sc_mutex_lock(&mutex);
|
|
sc_mutex_unlock(&mutex);
|
|
|
|
sc_mutex_term(&mutex);
|
|
|
|
return 0;
|
|
}
|