Moved VG_(fd_{hard,soft}_limit) into a better spot.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3871 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/coregrind/pub_core_libcfile.h b/coregrind/pub_core_libcfile.h
index 59386ad..147bd0d 100644
--- a/coregrind/pub_core_libcfile.h
+++ b/coregrind/pub_core_libcfile.h
@@ -38,6 +38,10 @@
 
 #include "pub_tool_libcfile.h"
 
+/* Application-visible file descriptor limits */
+extern Int VG_(fd_soft_limit);
+extern Int VG_(fd_hard_limit);
+
 /* Move an fd into the Valgrind-safe range */
 extern Int VG_(safe_fd)(Int oldfd);