mirror of
https://github.com/status-im/status-go.git
synced 2025-01-11 07:07:24 +00:00
10 lines
147 B
C
10 lines
147 B
C
|
#include <unistd.h>
|
||
|
|
||
|
typedef void (*callback)(void*);
|
||
|
|
||
|
static void call_later(int delay, callback cb, void* data) {
|
||
|
sleep(delay);
|
||
|
cb(data);
|
||
|
}
|
||
|
|