From c8aabc50d4b94916bedae7cfa5c764b77fbaf7bb Mon Sep 17 00:00:00 2001 From: Yurii Yakovenko Date: Wed, 6 Nov 2024 21:07:29 +0000 Subject: [PATCH] Update cv6/a_station.c --- cv6/a_station.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cv6/a_station.c b/cv6/a_station.c index e36bfd4..257f800 100644 --- a/cv6/a_station.c +++ b/cv6/a_station.c @@ -1,3 +1,8 @@ +#include +#include "a_station.h" +#include +#include + struct station* create_station(){ struct station* station = (struct station*)calloc(1,sizeof(struct station)); station->tracks = (struct car**)calloc(STATION_SIZE, sizeof(struct car*));