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);