/[avr-libc]/avr-libc/include/stdio.h
ViewVC logotype

Diff of /avr-libc/include/stdio.h

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

revision 1.19 by joerg_wunsch, Tue Sep 6 18:49:15 2005 UTC revision 1.20 by joerg_wunsch, Tue Sep 6 19:11:14 2005 UTC
# Line 1013  extern int     sscanf(const char *__buf, con Line 1013  extern int     sscanf(const char *__buf, con
1013   */   */
1014  extern int      sscanf_P(const char *__buf, const char *__fmt, ...);  extern int      sscanf_P(const char *__buf, const char *__fmt, ...);
1015    
1016    #if defined(DOXYGEN)
1017    /**
1018       Flush \c stream.
1019    
1020       This is a null operation provided for source-code compatibility
1021       only, as the standard IO implementation currently does not perform
1022       any buffering.
1023     */
1024    extern int      fflush(FILE *stream);
1025    #else
1026    static __inline__ int fflush(FILE *stream __attribute__((unused)))
1027    {
1028            return 0;
1029    }
1030    #endif
1031    
1032  #ifdef __cplusplus  #ifdef __cplusplus
1033  }  }
1034  #endif  #endif

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26