/** Copyright 2025, Haiku, Inc. All rights reserved.* Distributed under the terms of the MIT license.*/#include "SpecialNode.h"#include "Volume.h"SpecialNode::SpecialNode(Volume *volume, mode_t mode):Node(volume, NODE_TYPE_SPECIAL){fMode = mode;}SpecialNode::~SpecialNode(){}status_tSpecialNode::SetSize(off_t newSize){return B_UNSUPPORTED;}off_tSpecialNode::GetSize() const{return 0;}