Source position: linkedlist.inc line 6
type LinkedList = record
next: PLinkedList;
prev: PLinkedList;
data: pointer;
end;