mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
a05dccad13
This can be used for some static analysis that doesn't currently survive a full iterate loop, but can possibly survive a new+kill.
9 lines
136 B
C
9 lines
136 B
C
#include "../toxcore/tox.h"
|
|
|
|
#include "../toxcore/ccompat.h"
|
|
|
|
int main(void) {
|
|
tox_kill(tox_new(nullptr, nullptr));
|
|
return 0;
|
|
}
|