1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

fix some includes

This commit is contained in:
Steffen Vogel 2018-08-06 11:24:49 +02:00
parent 97e991f4fc
commit afc529626a
4 changed files with 15 additions and 4 deletions

View file

@ -25,6 +25,7 @@
#include <jansson.h>
#include <pthread.h>
#include <libwebsockets.h>
#include <villas/list.h>
#include <villas/common.h>
@ -36,8 +37,6 @@ extern "C" {
#endif
/* Forward declarations */
struct lws;
enum lws_callback_reasons;
struct super_node;
struct api;

View file

@ -23,15 +23,22 @@
#pragma once
#include <villas/atomic.h>
#include <stddef.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <complex.h>
#include <stdbool.h>
#include <time.h>
/* "I" defined by complex.h collides with a define in OpenSSL */
#undef I
#define J _Complex_I
#include <villas/atomic.h>
#include <villas/signal.h>
#ifdef __cplusplus
extern "C" {
#endif

View file

@ -22,6 +22,9 @@
#include <string.h>
#include <inttypes.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <villas/node.h>
#include <villas/plugin.h>

View file

@ -21,8 +21,10 @@
*********************************************************************************/
#include <unistd.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <netdb.h>
#include <netinet/ip.h>
#include <arpa/inet.h>
#include <errno.h>