First use of <stdatomic.h>. We will see if any supported systems don't have it yet. (C11 was so last decade.) Fixes #338.
16 lines
145 B
C
16 lines
145 B
C
#include <u.h>
|
|
#include <libc.h>
|
|
|
|
static Lock fmtlock;
|
|
|
|
void
|
|
__fmtlock(void)
|
|
{
|
|
lock(&fmtlock);
|
|
}
|
|
|
|
void
|
|
__fmtunlock(void)
|
|
{
|
|
unlock(&fmtlock);
|
|
}
|