Remove empty linked list files

This commit is contained in:
Matt Penny 2024-10-05 00:00:50 -04:00
parent 2e6f8ac86b
commit 1e8a4f5458
2 changed files with 0 additions and 10 deletions

View file

@ -1 +0,0 @@
#include "linked_list.h"

View file

@ -1,9 +0,0 @@
#ifndef __LINKED_LIST_H__
#define __LINKED_LIST_H__
struct LinkedListNode {
struct LinkedListNode* next;
struct LinkedListNode* prev;
};
#endif