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

path: remove unused function

This commit is contained in:
Steffen Vogel 2021-06-24 06:22:43 -04:00 committed by Steffen Vogel
parent ad5d1d4a4c
commit c19b019217
2 changed files with 0 additions and 7 deletions

View file

@ -146,8 +146,6 @@ const char * path_name(struct vpath *p);
/** Get a list of signals which is emitted by the path. */
struct vlist * path_output_signals(struct vpath *n);
struct vlist * path_signals(struct vpath *p);
/** Reverse a path */
int path_reverse(struct vpath *p, struct vpath *r);

View file

@ -812,11 +812,6 @@ bool path_is_reversed(const struct vpath *p)
return p->reverse;
}
struct vlist * path_signals(struct vpath *p)
{
return &p->signals;
}
struct vlist * path_output_signals(struct vpath *p)
{
#ifdef WITH_HOOKS