Magellan Linux

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

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

revision 815 by niro, Fri Apr 24 18:32:46 2009 UTC revision 1122 by niro, Wed Aug 18 21:11:40 2010 UTC
# Line 115  static __inline__ int fflush(FILE * __f) Line 115  static __inline__ int fflush(FILE * __f)
115   return 0;   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;
122     return 0;
123    }
124    
125  __extern int sscanf(const char *, const char *, ...);  __extern int sscanf(const char *, const char *, ...);
126  __extern int vsscanf(const char *, const char *, va_list);  __extern int vsscanf(const char *, const char *, va_list);
127    

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