From 9e4651e460a92168ffa86f54be9a5033c6e9064c Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sat, 29 Aug 2020 21:13:54 -0700 Subject: [PATCH] Fix implicit function declaration warnings --- src/Platform.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/Platform.c b/src/Platform.c index 555ba88..f1d1d94 100644 --- a/src/Platform.c +++ b/src/Platform.c @@ -1,7 +1,8 @@ #define _GNU_SOURCE -#include "PlatformThreads.h" #include "Platform.h" +#include "PlatformThreads.h" +#include "PlatformSockets.h" #include @@ -9,9 +10,6 @@ // in PltSleepMsInterruptible(). #define INTERRUPT_PERIOD_MS 50 -int initializePlatformSockets(void); -void cleanupPlatformSockets(void); - struct thread_context { ThreadEntry entry; void* context;