=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/include/stdio.h,v retrieving revision 1.45 retrieving revision 1.46 diff -c -r1.45 -r1.46 *** src/include/stdio.h 2013/12/04 22:58:24 1.45 --- src/include/stdio.h 2014/03/16 18:38:30 1.46 *************** *** 1,4 **** ! /* $OpenBSD: stdio.h,v 1.45 2013/12/04 22:58:24 deraadt Exp $ */ /* $NetBSD: stdio.h,v 1.18 1996/04/25 18:29:21 jtc Exp $ */ /*- --- 1,4 ---- ! /* $OpenBSD: stdio.h,v 1.46 2014/03/16 18:38:30 guenther Exp $ */ /* $NetBSD: stdio.h,v 1.18 1996/04/25 18:29:21 jtc Exp $ */ /*- *************** *** 437,443 **** #define putc(x, fp) (!__isthreaded ? __sputc(x, fp) : (putc)(x, fp)) #endif /* __BSD_VISIBLE */ - #ifndef lint #if __POSIX_VISIBLE >= 199506 #define getc_unlocked(fp) __sgetc(fp) /* --- 437,442 ---- *************** *** 448,454 **** #define putc_unlocked(x, fp) __sputc(x, fp) #endif /* __BSD_VISIBLE */ #endif /* __POSIX_VISIBLE >= 199506 */ - #endif /* lint */ #define getchar() getc(stdin) #define putchar(x) putc(x, stdout) --- 447,452 ----