diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 2000-01-16 02:01:13 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 2000-01-16 02:01:13 +0000 |
commit | 4e7223616ea164bacb4e42badcf8b435d436d7ad (patch) | |
tree | a7228d2df8eb048a18097cb0f0283b20ab0950e8 /ace/Svc_Conf_l.cpp | |
parent | 99bb82dbbbb54de8f19d92321027fc156c4d15d2 (diff) | |
download | ATCD-4e7223616ea164bacb4e42badcf8b435d436d7ad.tar.gz |
ChangeLogTag:Sat Jan 15 19:59:00 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
Diffstat (limited to 'ace/Svc_Conf_l.cpp')
-rw-r--r-- | ace/Svc_Conf_l.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Svc_Conf_l.cpp b/ace/Svc_Conf_l.cpp index c950bc856ad..5b64a110416 100644 --- a/ace/Svc_Conf_l.cpp +++ b/ace/Svc_Conf_l.cpp @@ -1493,7 +1493,7 @@ ACE_YY_BUFFER_STATE b; #ifndef ACE_YY_ALWAYS_INTERACTIVE #ifndef ACE_YY_NEVER_INTERACTIVE -extern int isatty ACE_YY_PROTO(( int )); +extern int nop_isatty ACE_YY_PROTO(( int )); #endif #endif @@ -1518,7 +1518,7 @@ FILE *file; #if ACE_YY_NEVER_INTERACTIVE b->ace_yy_is_interactive = 0; #else - b->ace_yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; + b->ace_yy_is_interactive = file ? (ACE_OS::isatty( fileno(file) ) > 0) : 0; #endif #endif } |