|
From: <sv...@va...> - 2014-06-20 14:15:06
|
Author: sewardj
Date: Fri Jun 20 14:14:59 2014
New Revision: 14065
Log:
Remove fd_exists(), as it is never used.
Modified:
trunk/coregrind/m_libcfile.c
Modified: trunk/coregrind/m_libcfile.c
==============================================================================
--- trunk/coregrind/m_libcfile.c (original)
+++ trunk/coregrind/m_libcfile.c Fri Jun 20 14:14:59 2014
@@ -50,12 +50,6 @@
File stuff
------------------------------------------------------------------ */
-static inline Bool fd_exists(Int fd)
-{
- struct vg_stat st;
- return VG_(fstat)(fd, &st) == 0;
-}
-
/* Move an fd into the Valgrind-safe range */
Int VG_(safe_fd)(Int oldfd)
{
|