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

lua: fix includes

This commit is contained in:
Steffen Vogel 2021-03-09 01:49:18 +01:00
parent 2d5ca906e7
commit f71bd0fef4

View file

@ -30,9 +30,9 @@
#include <cstdio>
extern "C" {
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
#include <lua.h>
#include <lualib.h>
#include <lauxlib.h>
};
#include <villas/exceptions.hpp>