mirror of
https://github.com/mattn/go-sqlite3.git
synced 2025-05-24 14:54:48 +00:00
6 lines
142 B
C
6 lines
142 B
C
void _unlock_notify_callback(void *arg, int argc)
|
|
{
|
|
extern void unlock_notify_callback(void *, int);
|
|
unlock_notify_callback(arg, argc);
|
|
}
|