Changeset 3714 for branches/libc-0.6/src/emx/include/stdio.h
- Timestamp:
- Mar 17, 2011, 6:04:48 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/libc-0.6/src/emx/include/stdio.h
r2777 r3714 465 465 #define __sgetc(p) (--(p)->_r < 0 ? __srget(p) : (int)(*(p)->_p++)) 466 466 #if defined(__GNUC__) && defined(__STDC__) 467 static __inline int __sputc(int _c, FILE *_p) {467 static __inline__ int __sputc(int _c, FILE *_p) { 468 468 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n')) 469 469 return (*_p->_p++ = _c); … … 527 527 int _rmtmp (void); 528 528 529 #include <features.h> 530 #ifdef __USE_EXTERN_INLINES 531 529 532 extern __inline__ int feof (FILE *_s) 530 533 { … … 539 542 extern __inline__ int getchar (void) { return getc (stdin); } 540 543 extern __inline__ int putchar (int _c) { return putc (_c, stdout); } 544 545 #endif /* __USE_EXTERN_INLINES */ 541 546 542 547 #if !defined (__STRICT_ANSI__) && !defined (_POSIX_SOURCE) || defined(__USE_EMX)
Note:
See TracChangeset
for help on using the changeset viewer.