summaryrefslogtreecommitdiff
path: root/ACE/ace/OS_NS_stdio.inl
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2009-05-18 06:17:06 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2009-05-18 06:17:06 +0000
commit45fcac4255b17038cc3618bdd218253cd7ebd464 (patch)
treeb47a9f8cd8b393ef900de14eb1db65d757b6318c /ACE/ace/OS_NS_stdio.inl
parent372eb5e214263bea8c510489d1f1b44541dc1d4d (diff)
downloadATCD-45fcac4255b17038cc3618bdd218253cd7ebd464.tar.gz
Mon May 18 06:17:05 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_stdio.{h,inl}: Added ACE_OS::fileno()
Diffstat (limited to 'ACE/ace/OS_NS_stdio.inl')
-rw-r--r--ACE/ace/OS_NS_stdio.inl6
1 files changed, 6 insertions, 0 deletions
diff --git a/ACE/ace/OS_NS_stdio.inl b/ACE/ace/OS_NS_stdio.inl
index d2e2e915b20..4a48ce3243f 100644
--- a/ACE/ace/OS_NS_stdio.inl
+++ b/ACE/ace/OS_NS_stdio.inl
@@ -970,6 +970,12 @@ ACE_OS::vprintf (const wchar_t *format, va_list argptr)
#endif /* ACE_HAS_WCHAR */
ACE_INLINE int
+ACE_OS::fileno (FILE* fp)
+{
+ return ACE_STD_NAMESPACE::fileno (fp);
+}
+
+ACE_INLINE int
ACE_OS::vfprintf (FILE *fp, const char *format, va_list argptr)
{
return ACE_STD_NAMESPACE::vfprintf (fp, format, argptr);