Changeset 3713
- Timestamp:
- Mar 17, 2011, 6:04:00 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libc/include/stdio.h
r3712 r3713 530 530 #ifdef __USE_EXTERN_INLINES 531 531 532 static__inline__ int feof (FILE *_s)532 extern __inline__ int feof (FILE *_s) 533 533 { 534 534 return (_s->_flags & _IOEOF ? 1 : 0); 535 535 } 536 536 537 static__inline__ int ferror (FILE *_s)537 extern __inline__ int ferror (FILE *_s) 538 538 { 539 539 return (_s->_flags & _IOERR ? 1 : 0); 540 540 } 541 541 542 static__inline__ int getchar (void) { return getc (stdin); }543 static__inline__ int putchar (int _c) { return putc (_c, stdout); }542 extern __inline__ int getchar (void) { return getc (stdin); } 543 extern __inline__ int putchar (int _c) { return putc (_c, stdout); } 544 544 545 545 #endif /* __USE_EXTERN_INLINES */
Note:
See TracChangeset
for help on using the changeset viewer.