1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- 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
This commit is contained in:
Olaf Barthel
2005-03-06 09:04:44 +00:00
parent 6931123dc1
commit d370bd123b
2 changed files with 5 additions and 5 deletions

View File

@ -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);
/****************************************************************************/

View File

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