~ubuntu-branches/ubuntu/raring/avr-libc/raring-proposed

« back to all changes in this revision

Viewing changes to libc/stdio/vfscanf.c

  • Committer: Bazaar Package Importer
  • Author(s): Hakan Ardo
  • Date: 2011-07-14 11:15:32 UTC
  • mfrom: (1.1.10 upstream) (4.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20110714111532-e83i3vqdowgxw8lv
Tags: 1:1.7.1-2
include/util/delay.h.in: Add math.h to list of includes (closes:
#633822)

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
  POSSIBILITY OF SUCH DAMAGE.
31
31
*/
32
32
 
33
 
/* $Id: vfscanf.c,v 1.13.4.2 2009/04/01 23:12:06 arcanum Exp $ */
 
33
/* $Id: vfscanf.c 2191 2010-11-05 13:45:57Z arcanum $ */
 
34
 
 
35
#if !defined(__AVR_TINY__)
34
36
 
35
37
#include <avr/pgmspace.h>
36
38
#include <ctype.h>
880
882
  eof:
881
883
    return nconvs ? nconvs : EOF;
882
884
}
 
885
 
 
886
#endif /* !defined(__AVR_TINY__) */