#ifndef RECLIS_H
#define RECLIS_H

struct RecLis {
  int info;
  RecLis* next;
};

#endif
