diff options
Diffstat (limited to 'usr/src/head/stdio.h')
-rw-r--r-- | usr/src/head/stdio.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/usr/src/head/stdio.h b/usr/src/head/stdio.h index 9575bf2401..2f20e59041 100644 --- a/usr/src/head/stdio.h +++ b/usr/src/head/stdio.h @@ -362,25 +362,12 @@ extern int fseeko64(FILE *, off64_t, int); extern off64_t ftello64(FILE *); #endif -#if !defined(__lint) - #if defined(__EXTENSIONS__) || defined(_REENTRANT) || \ (_POSIX_C_SOURCE - 0 >= 199506L) -#ifndef _LP64 -#define getc_unlocked(p) (--(p)->_cnt < 0 \ - ? __filbuf(p) \ - : (int)*(p)->_ptr++) -#define putc_unlocked(x, p) (--(p)->_cnt < 0 \ - ? __flsbuf((x), (p)) \ - : (int)(*(p)->_ptr++ = \ - (unsigned char) (x))) -#endif /* _LP64 */ #define getchar_unlocked() getc_unlocked(stdin) #define putchar_unlocked(x) putc_unlocked((x), stdout) #endif /* defined(__EXTENSIONS__) || defined(_REENTRANT).. */ -#endif /* !defined(__lint) */ - #ifdef __cplusplus } #endif |