summaryrefslogtreecommitdiffstats
path: root/contrib/restricted/emscripten/system/lib/libc/compat/__synccall.c
blob: 50b028efbf3f15178a2b458d93e1eb518e31e65a (plain) (blame)
1
2
3
4
5
// just do it, until we have full pthreads
void __synccall(void (*func)(void *), void *ctx) {
  func(ctx);
}