aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2022-12-04 19:38:59 +0900
committerMartin Schanzenbach <schanzen@gnunet.org>2022-12-04 19:38:59 +0900
commit9d309fcdacd0d1e546ae6b8aeb1c8df6fe6ef537 (patch)
tree8ba8929ebaa39ed321bc02e3943f960b27ae8bfc
parent82ba0d60eb4868b605dc596a8fa46838e1cc766e (diff)
downloadgnunet-ext-9d309fcdacd0d1e546ae6b8aeb1c8df6fe6ef537.tar.gz
gnunet-ext-9d309fcdacd0d1e546ae6b8aeb1c8df6fe6ef537.zip
remove platform.h
-rw-r--r--src/ext/ext_api.c6
-rw-r--r--src/ext/gnunet-service-ext.c2
2 files changed, 6 insertions, 2 deletions
diff --git a/src/ext/ext_api.c b/src/ext/ext_api.c
index 99498bd..0ea7797 100644
--- a/src/ext/ext_api.c
+++ b/src/ext/ext_api.c
@@ -29,6 +29,10 @@
29#include <gnunet/gnunet_util_lib.h> 29#include <gnunet/gnunet_util_lib.h>
30#include "gnunet_ext_service.h" 30#include "gnunet_ext_service.h"
31 31
32 32void
33EXT_TEST_new_func (void* intarg)
34{
35 return;
36}
33 37
34/* end of ext_api.c */ 38/* end of ext_api.c */
diff --git a/src/ext/gnunet-service-ext.c b/src/ext/gnunet-service-ext.c
index 6399389..8eb569e 100644
--- a/src/ext/gnunet-service-ext.c
+++ b/src/ext/gnunet-service-ext.c
@@ -23,13 +23,13 @@
23 * @brief ext service implementation 23 * @brief ext service implementation
24 * @author Christian Grothoff 24 * @author Christian Grothoff
25 */ 25 */
26#include <gnunet/platform.h>
27#include <stddef.h> 26#include <stddef.h>
28 27
29#if HAVE_NETINET_IN_H 28#if HAVE_NETINET_IN_H
30#include <netinet/in.h> 29#include <netinet/in.h>
31#endif 30#endif
32 31
32#include "gnunet_ext_config.h"
33#include <gnunet/gnunet_util_lib.h> 33#include <gnunet/gnunet_util_lib.h>
34#include "gnunet_protocols_ext.h" 34#include "gnunet_protocols_ext.h"
35 35