Magellan Linux

Diff of /trunk/mkinitrd-magellan/klibc/usr/include/stdio.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 532 by niro, Sat Sep 1 22:45:15 2007 UTC revision 1122 by niro, Wed Aug 18 21:11:40 2010 UTC
# Line 109  __extern int asprintf(char **, const cha Line 109  __extern int asprintf(char **, const cha
109  __extern int vasprintf(char **, const char *, va_list);  __extern int vasprintf(char **, const char *, va_list);
110    
111  /* No buffering, so no flushing needed */  /* No buffering, so no flushing needed */
112  extern __inline__ int fflush(FILE * __f)  static __inline__ int fflush(FILE * __f)
113    {
114     (void)__f;
115     return 0;
116    }
117    
118    /* stream errors are not kept track of by klibc implementation */
119    static __inline__ int ferror(FILE * __f)
120  {  {
121   (void)__f;   (void)__f;
122   return 0;   return 0;

Legend:
Removed from v.532  
changed lines
  Added in v.1122