[BACK]Return to stdio.h CVS log [TXT][DIR] Up to [local] / src / include

Diff for /src/include/stdio.h between version 1.45 and 1.46

version 1.45, 2013/12/04 22:58:24 version 1.46, 2014/03/16 18:38:30
Line 437 
Line 437 
 #define putc(x, fp)     (!__isthreaded ? __sputc(x, fp) : (putc)(x, fp))  #define putc(x, fp)     (!__isthreaded ? __sputc(x, fp) : (putc)(x, fp))
 #endif /* __BSD_VISIBLE */  #endif /* __BSD_VISIBLE */
   
 #ifndef lint  
 #if __POSIX_VISIBLE >= 199506  #if __POSIX_VISIBLE >= 199506
 #define getc_unlocked(fp)       __sgetc(fp)  #define getc_unlocked(fp)       __sgetc(fp)
 /*  /*
Line 448 
Line 447 
 #define putc_unlocked(x, fp)    __sputc(x, fp)  #define putc_unlocked(x, fp)    __sputc(x, fp)
 #endif /* __BSD_VISIBLE */  #endif /* __BSD_VISIBLE */
 #endif /* __POSIX_VISIBLE >= 199506 */  #endif /* __POSIX_VISIBLE >= 199506 */
 #endif /* lint */  
   
 #define getchar()       getc(stdin)  #define getchar()       getc(stdin)
 #define putchar(x)      putc(x, stdout)  #define putchar(x)      putc(x, stdout)

Legend:
Removed from v.1.45  
changed lines
  Added in v.1.46