mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
1e8fa85aad
This requires that every symbol, even if static (file-scope), is unique. The idea is that we can easily run "whole" program static analysis on programs that include monolith.h ("whole" is in quotes, as we don't include dependencies like libsodium in this static analysis).
37 lines
1.1 KiB
C
37 lines
1.1 KiB
C
#include "../toxcore/tox.c"
|
|
|
|
#include "../toxcore/crypto_core.c"
|
|
#include "../toxcore/crypto_core_mem.c"
|
|
#include "../toxcore/DHT.c"
|
|
#include "../toxcore/friend_connection.c"
|
|
#include "../toxcore/friend_requests.c"
|
|
#include "../toxcore/group.c"
|
|
#include "../toxcore/LAN_discovery.c"
|
|
#include "../toxcore/list.c"
|
|
#include "../toxcore/logger.c"
|
|
#include "../toxcore/Messenger.c"
|
|
#include "../toxcore/net_crypto.c"
|
|
#include "../toxcore/network.c"
|
|
#include "../toxcore/onion_announce.c"
|
|
#include "../toxcore/onion.c"
|
|
#include "../toxcore/onion_client.c"
|
|
#include "../toxcore/ping_array.c"
|
|
#include "../toxcore/ping.c"
|
|
#include "../toxcore/TCP_client.c"
|
|
#include "../toxcore/TCP_connection.c"
|
|
#include "../toxcore/TCP_server.c"
|
|
#include "../toxcore/tox_api.c"
|
|
#include "../toxcore/util.c"
|
|
|
|
#include "../toxav/audio.c"
|
|
#include "../toxav/bwcontroller.c"
|
|
#include "../toxav/groupav.c"
|
|
#include "../toxav/msi.c"
|
|
#include "../toxav/ring_buffer.c"
|
|
#include "../toxav/rtp.c"
|
|
#include "../toxav/toxav.c"
|
|
#include "../toxav/toxav_old.c"
|
|
#include "../toxav/video.c"
|
|
|
|
#include "../toxencryptsave/toxencryptsave.c"
|