Changeset 3713


Ignore:
Timestamp:
Mar 17, 2011, 6:04:00 PM (14 years ago)
Author:
bird
Message:

oops: unwanted extern -> static there.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/libc/include/stdio.h

    r3712 r3713  
    530530#ifdef __USE_EXTERN_INLINES
    531531
    532 static __inline__ int feof (FILE *_s)
     532extern __inline__ int feof (FILE *_s)
    533533{
    534534  return (_s->_flags & _IOEOF ? 1 : 0);
    535535}
    536536
    537 static __inline__ int ferror (FILE *_s)
     537extern __inline__ int ferror (FILE *_s)
    538538{
    539539  return (_s->_flags & _IOERR ? 1 : 0);
    540540}
    541541
    542 static __inline__ int getchar (void) { return getc (stdin); }
    543 static __inline__ int putchar (int _c) { return putc (_c, stdout); }
     542extern __inline__ int getchar (void) { return getc (stdin); }
     543extern __inline__ int putchar (int _c) { return putc (_c, stdout); }
    544544
    545545#endif /* __USE_EXTERN_INLINES */
Note: See TracChangeset for help on using the changeset viewer.