mirror of
https://github.com/status-im/status-go.git
synced 2025-02-18 09:47:53 +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);
|
|
}
|
|
|