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

use proper include style

This commit is contained in:
Steffen Vogel 2018-08-02 10:31:58 +02:00
parent 9a7f2afd0d
commit ae8d576b4a
4 changed files with 12 additions and 12 deletions

View file

@ -26,10 +26,10 @@
#include <string.h>
#include "villas/hook.h"
#include "villas/plugin.h"
#include "villas/timing.h"
#include "villas/sample.h"
#include <villas/hook.h>
#include <villas/plugin.h>
#include <villas/timing.h>
#include <villas/sample.h>
struct limit_rate {
enum {

View file

@ -26,8 +26,8 @@
#include <pthread.h>
#include <unistd.h>
#include "villas/nodes/iec61850_sv.h"
#include "villas/plugin.h"
#include <villas/nodes/iec61850_sv.h>
#include <villas/plugin.h>
#define CONFIG_SV_DEFAULT_APPID 0x4000
#define CONFIG_SV_DEFAULT_DST_ADDRESS CONFIG_GOOSE_DEFAULT_DST_ADDRESS

View file

@ -28,8 +28,8 @@
#include <pthread.h>
#include <unistd.h>
#include "villas/nodes/iec61850_sv.h"
#include "villas/plugin.h"
#include <villas/nodes/iec61850_sv.h>
#include <villas/plugin.h>
#define CONFIG_SV_DEFAULT_APPID 0x4000
#define CONFIG_SV_DEFAULT_DST_ADDRESS CONFIG_GOOSE_DEFAULT_DST_ADDRESS

View file

@ -22,10 +22,10 @@
#include <string.h>
#include "villas/signal.h"
#include "villas/list.h"
#include "villas/utils.h"
#include "villas/node.h"
#include <villas/signal.h>
#include <villas/list.h>
#include <villas/utils.h>
#include <villas/node.h>
int signal_init(struct signal *s)
{