From d370bd123b5d227f97b4c4c1973eacf456976927 Mon Sep 17 00:00:00 2001 From: Olaf Barthel Date: Sun, 6 Mar 2005 09:04:44 +0000 Subject: [PATCH] - Corrected the names of macros. git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14863 87f5fb63-7c3d-0410-a384-fd976d0f7a62 --- library/include/dos.h | 4 ++-- library/include/stdio.h | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/library/include/dos.h b/library/include/dos.h index 622f9db..9035c8c 100644 --- a/library/include/dos.h +++ b/library/include/dos.h @@ -1,5 +1,5 @@ /* - * $Id: dos.h,v 1.8 2005-02-25 10:14:22 obarthel Exp $ + * $Id: dos.h,v 1.9 2005-03-06 09:04:44 obarthel Exp $ * * :ts=4 * @@ -293,8 +293,8 @@ extern BOOL __open_locale; * * __locale_exit() releases the default locale and closes locale.library. */ -extern void __locale_exit(void); extern int __locale_init(void); +extern void __locale_exit(void); /****************************************************************************/ diff --git a/library/include/stdio.h b/library/include/stdio.h index 850d7e3..20427e9 100644 --- a/library/include/stdio.h +++ b/library/include/stdio.h @@ -1,5 +1,5 @@ /* - * $Id: stdio.h,v 1.8 2005-02-28 13:42:54 obarthel Exp $ + * $Id: stdio.h,v 1.9 2005-03-06 09:04:44 obarthel Exp $ * * :ts=4 * @@ -327,7 +327,7 @@ extern char *tmpnam(char *buf); /* * A special buffer flush routine which returns the last character written * in case of success and EOF in case of failure. This is used by the - * putc_unlocked() macro defined above. + * __putc_unlocked() macro defined above. */ extern int __flush(FILE *stream); @@ -335,7 +335,7 @@ extern int __flush(FILE *stream); /* * A special function which returns the input character. This is used by - * the getc() macro defined above. + * the __getc_unlocked() macro defined above. */ extern int __unlockfile(FILE *stream,int c);