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

removed some obsolete functions

This commit is contained in:
Steffen Vogel 2015-11-29 21:28:24 +01:00
parent b937010f3f
commit 313ae8348a
2 changed files with 0 additions and 16 deletions

View file

@ -56,12 +56,6 @@ struct file {
double read_rate; /**< The read rate. */
};
/** @see node_vtable::init */
int file_init(int argc, char *argv[], struct settings *set);
/** @see node_vtable::deinit */
int file_deinit();
/** @see node_vtable::print */
char * file_print(struct node *n);

View file

@ -16,16 +16,6 @@
#include "utils.h"
#include "timing.h"
int file_init(int argc, char *argv[], struct settings *set)
{ INDENT
return 0; /* nothing todo here */
}
int file_deinit()
{ INDENT
return 0; /* nothing todo here */
}
int file_reverse(struct node *n)
{
struct file *f = n->file;