summaryrefslogtreecommitdiff
path: root/ace/OS.i
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-09-06 22:30:55 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-09-06 22:30:55 +0000
commit355c2db59316cbf7d566005642b074445aa68c80 (patch)
treef8acf4eedc711dd34aaa0ae325ecdf96879a3333 /ace/OS.i
parent12b86e1cbf35c325994b8935ce4e3bdbe32fc5c7 (diff)
downloadATCD-355c2db59316cbf7d566005642b074445aa68c80.tar.gz
*** empty log message ***
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