summaryrefslogtreecommitdiff
path: root/ace/OS.h
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-01-17 20:29:00 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-01-17 20:29:00 +0000
commit2d85c325b1050a34721139241028988913994e6b (patch)
tree0a7b4d9c37b1d93019857742bb61ff8bab7138be /ace/OS.h
parent953cf51642f6c44e4a503084518c98a8174aa469 (diff)
downloadATCD-2d85c325b1050a34721139241028988913994e6b.tar.gz
ChangeLogTag:Mon Jan 17 14:20:17 2000 Nanbor Wang <nanbor@cs.wustl.edu>
Diffstat (limited to 'ace/OS.h')
-rw-r--r--ace/OS.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/ace/OS.h b/ace/OS.h
index 79da56130fa..e7c29282186 100644
--- a/ace/OS.h
+++ b/ace/OS.h
@@ -2875,7 +2875,7 @@ typedef unsigned int size_t;
// from compiler supplied stdlib.h
extern int putenv (char *);
- int isatty (ACE_HANDLE h);
+ int isatty (int h);
# endif /* ACE_PSOS_SNARFS_HEADER_INFO */
@@ -6060,7 +6060,10 @@ public:
// QoS-enabled <ioctl> when the I/O control code is either SIO_SET_QOS
// or SIO_GET_QOS.
static int isastream (ACE_HANDLE handle);
+ static int isatty (int handle);
+#if defined (ACE_WIN32) && !defined (ACE_HAS_WINCE)
static int isatty (ACE_HANDLE handle);
+#endif /* ACE_WIN32 && !ACE_HAS_WINCE */
static off_t lseek (ACE_HANDLE handle,
off_t offset,
int whence);
@@ -7177,8 +7180,8 @@ size_t fwrite (void *buf, size_t sz, size_t count, FILE *fp);
size_t fread (void *buf, size_t sz, size_t count, FILE *fp);
int getc (FILE *fp);
int ferror (FILE *fp);
-int isatty (ACE_HANDLE h);
-ACE_HANDLE fileno (FILE *fp);
+int isatty (int h);
+int fileno (FILE *fp);
int fflush (FILE *fp);
# if defined (UNDER_CE) && (UNDER_CE < 211)
void exit (int status);