summaryrefslogtreecommitdiff
path: root/ace/os_include/stdio.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/os_include/stdio.h')
-rw-r--r--ace/os_include/stdio.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/ace/os_include/stdio.h b/ace/os_include/stdio.h
index b731e3dee4e..34b71d2886e 100644
--- a/ace/os_include/stdio.h
+++ b/ace/os_include/stdio.h
@@ -2,19 +2,19 @@
//=============================================================================
/**
- * @file stdio.h
+ * @file os_stdio.h
*
* standard buffered input/output
*
* $Id$
*
- * @author Don Hinton <dhinton@ieee.org>
+ * @author Don Hinton <dhinton@dresystems.com>
* @author This code was originally in various places including ace/OS.h.
*/
//=============================================================================
-#ifndef ACE_OS_INCLUDE_STDIO_H
-#define ACE_OS_INCLUDE_STDIO_H
+#ifndef ACE_OS_INCLUDE_OS_STDIO_H
+#define ACE_OS_INCLUDE_OS_STDIO_H
#include "ace/pre.h"
@@ -29,28 +29,28 @@
#include "ace/os_include/stddef.h"
#if !defined (ACE_LACKS_STDIO_H)
-# include /**/ <stdio.h>
+# include /**/ <stdio.h>
#endif /* !ACE_LACKS_STDIO_H */
#if !defined (ACE_WIN32) && !defined (INTEGRITY)
-#define ACE_MAX_USERID L_cuserid
+# define ACE_MAX_USERID L_cuserid
#endif /*!ACE_WIN32*/
// this is a nasty hack to get around problems with the
// pSOS definition of BUFSIZ as the config table entry
// (which is valued using the LC_BUFSIZ value anyway)
-# if defined (ACE_PSOS)
-# if defined (BUFSIZ)
-# undef BUFSIZ
-# endif /* defined (BUFSIZ) */
-# define BUFSIZ LC_BUFSIZ
-# endif /* defined (ACE_PSOS) */
+#if defined (ACE_PSOS)
+# if defined (BUFSIZ)
+# undef BUFSIZ
+# endif /* defined (BUFSIZ) */
+# define BUFSIZ LC_BUFSIZ
+#endif /* defined (ACE_PSOS) */
-# if defined (BUFSIZ)
-# define ACE_STREAMBUF_SIZE BUFSIZ
-# else
-# define ACE_STREAMBUF_SIZE 1024
-# endif /* BUFSIZ */
+#if defined (BUFSIZ)
+# define ACE_STREAMBUF_SIZE BUFSIZ
+#else
+# define ACE_STREAMBUF_SIZE 1024
+#endif /* BUFSIZ */
#if defined (ACE_WIN32) && !defined (ACE_PSOS)
// The following are #defines and #includes that are specific to
@@ -79,7 +79,7 @@
extern FILE *fdopen(int, const char *);
extern char *tempnam(const char *, const char *);
extern "C" int fileno(FILE *);
-# endif /* ACE_PSOS_SNARFS_HEADER_INFO */
+#endif /* ACE_PSOS_SNARFS_HEADER_INFO */
#include "ace/post.h"
-#endif /* ACE_OS_INCLUDE_STDIO_H */
+#endif /* ACE_OS_INCLUDE_OS_STDIO_H */