packages/net/linknx/patches/010-cdefs.patch
Ilya Lipnitskiy 5d8d4fbbcb
treewide: Run refresh on all packages
The crude loop I wrote to come up with this changeset:

  find -L package/feeds/packages/ -name patches | \
  sed 's/patches$/refresh/' | sort | xargs make

Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
2021-02-20 16:02:15 -08:00

26 lines
474 B
Diff

--- a/include/eibclient.h
+++ b/include/eibclient.h
@@ -27,11 +27,12 @@
#ifndef EIBCLIENT_H
#define EIBCLIENT_H
-#include "sys/cdefs.h"
#include "stdint.h"
#include <pthsem.h>
-__BEGIN_DECLS;
+#ifdef __cplusplus
+extern "C" {
+#endif
#include "eibloadresult.h"
@@ -705,5 +706,7 @@ BCU_LOAD_RESULT EIB_LoadImage (EIBConnec
*/
int EIB_LoadImage_async (EIBConnection * con, const uint8_t * image, int len);
-__END_DECLS
+#ifdef __cplusplus
+}
+#endif
#endif