From 2600337aa704efbeba8201e88147a764b4fd2b90 Mon Sep 17 00:00:00 2001 From: rsc Date: Sun, 2 Jan 2005 19:46:12 +0000 Subject: remove libfs. now lib9pclient --- src/libfs/close.c | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 src/libfs/close.c (limited to 'src/libfs/close.c') diff --git a/src/libfs/close.c b/src/libfs/close.c deleted file mode 100644 index 23388ae3..00000000 --- a/src/libfs/close.c +++ /dev/null @@ -1,26 +0,0 @@ -/* Copyright (C) 2003 Russ Cox, Massachusetts Institute of Technology */ -/* See COPYRIGHT */ - -#include -#include -#include -#include -#include "fsimpl.h" - -static void -fidclunk(Fid *fid) -{ - Fcall tx, rx; - - tx.type = Tclunk; - tx.fid = fid->fid; - fsrpc(fid->fs, &tx, &rx, 0); - _fsputfid(fid); -} - -void -fsclose(Fid *fid) -{ - /* maybe someday there will be a ref count */ - fidclunk(fid); -} -- cgit v1.2.3