summaryrefslogtreecommitdiff
path: root/ace/OS.i
diff options
context:
space:
mode:
Diffstat (limited to 'ace/OS.i')
-rw-r--r--ace/OS.i7
1 files changed, 7 insertions, 0 deletions
diff --git a/ace/OS.i b/ace/OS.i
index 14f02bde3de..7121dfcfadd 100644
--- a/ace/OS.i
+++ b/ace/OS.i
@@ -5167,6 +5167,13 @@ ACE_OS::puts (const char *s)
// ACE_TRACE ("ACE_OS::puts");
ACE_OSCALL_RETURN (::puts (s), int, -1);
}
+
+ACE_INLINE int
+ACE_OS::fputs (const char *s, FILE *stream)
+{
+ // ACE_TRACE ("ACE_OS::puts");
+ ACE_OSCALL_RETURN (::fputs (s, stream), int, -1);
+}
#endif /* ! ACE_HAS_WINCE */
ACE_INLINE ACE_SignalHandler