From 4565e40fde8d444a4bdb97c4c927715dfac77b4a Mon Sep 17 00:00:00 2001 From: Falk Werner Date: Sun, 3 Mar 2019 18:17:00 +0100 Subject: [PATCH] removes unused structs --- example/provider/main.c | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/example/provider/main.c b/example/provider/main.c index 4cc21e1..4f3cb7e 100644 --- a/example/provider/main.c +++ b/example/provider/main.c @@ -26,23 +26,6 @@ struct fs_entry char const * content; }; -struct fs_dir -{ - ino_t parent; - ino_t inode; - char const * name; -}; - -struct fs_file -{ - ino_t parent; - ino_t inode; - char const * name; - char const * content; - size_t content_length; - bool is_executable; -}; - struct fs { struct fs_entry const * entries;