summaryrefslogtreecommitdiff
path: root/toxcore/net_crypto.c
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-02-27 02:07:59 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-05-20 15:42:42 +0000
commitbe797d4b039b40d2c876f0a71cd1e48454a74065 (patch)
treec759c0f15a3ac0285e0bd941dc3edad06ade015d /toxcore/net_crypto.c
parent291a849a5a0afb4450bcd0d0c50b7aeccaac04f5 (diff)
Move system header includes from network.h to network.c
Diffstat (limited to 'toxcore/net_crypto.c')
-rw-r--r--toxcore/net_crypto.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/toxcore/net_crypto.c b/toxcore/net_crypto.c
index 2e8299f1..b9d8a360 100644
--- a/toxcore/net_crypto.c
+++ b/toxcore/net_crypto.c
@@ -29,9 +29,11 @@
29 29
30#include "net_crypto.h" 30#include "net_crypto.h"
31 31
32#include "util.h"
33
34#include <math.h> 32#include <math.h>
33#include <stdlib.h>
34#include <string.h>
35
36#include "util.h"
35 37
36typedef struct { 38typedef struct {
37 uint64_t sent_time; 39 uint64_t sent_time;