summaryrefslogtreecommitdiff
path: root/ACE/ace/OS_NS_stdio.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/OS_NS_stdio.inl')
-rw-r--r--ACE/ace/OS_NS_stdio.inl4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/OS_NS_stdio.inl b/ACE/ace/OS_NS_stdio.inl
index 81280e336e8..b97adfdbbc9 100644
--- a/ACE/ace/OS_NS_stdio.inl
+++ b/ACE/ace/OS_NS_stdio.inl
@@ -557,7 +557,7 @@ ACE_OS::getc (FILE *fp)
ACE_UNUSED_ARG (fp);
ACE_NOTSUP_RETURN (-1);
#else
- return std::getc (fp);
+ return ace_getc_helper (fp);
#endif
}
@@ -683,7 +683,7 @@ ACE_OS::fputc (int c, FILE *fp)
ACE_UNUSED_ARG (fp);
ACE_NOTSUP_RETURN (-1);
#else
- return std::fputc (c, fp);
+ return ace_fputc_helper (c, fp);
#endif
}