summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/vfscanf.c
AgeCommit message (Collapse)Author
2006-01-13Pull in inttypes.h, not stdint.h so we get the prototypes forTodd C. Miller
strtoimax/strtoumax.
2006-01-13Use long long and intmax_t instead of quad_t throughout. Adapted inTodd C. Miller
part from FreeBSD.
2006-01-08Fix the handling of negative hexadecimal numbers in integer formats.Todd C. Miller
From NetBSD.
2006-01-06Adapt things to use __type_t instead of _BSD_TYPE_T_Todd C. Miller
Add new sys/_types.h header Include machine/_types.h or sys/_types.h where applicable
2006-01-03Do not overlap flags; problem introduced when new escapes were added.Todd C. Miller
2005-12-19Add %hhd to *printf and *scanf as well as %z to *scanf. This wasTodd C. Miller
sent out and approved about 6 months ago and has been rotting in my tree ever since.
2005-08-08zap remaining rcsid.Marc Espie
Kill old files that are no longer compiled. okay theo
2005-06-17next citrus step.Marc Espie
reviewed by millert, otto, kevlo, naddy, kettenis... libc+libstdc++ bump
2005-05-28Use '\0' not 0 when storing as a char, part from Andrey Matveev.Todd C. Miller
2005-05-11let vfscanf be a real function. Use a weak_alias on systems where thisMarc Espie
is feasible. Okay millert@ There's a major libc bump coming that is going to cover this as well...
2005-03-31make sure the implementation matches the prototype..Patrick Latifi
char const * -> const char * ok otto@ deraadt@
2004-09-28deregister + ansify, no change in object code. ok deraadt@ millert@Otto Moerbeek
2003-06-02Remove the advertising clause in the UCB license which BerkeleyTodd C. Miller
rescinded 22 July 1999. Proofed by myself and Theo.
2002-02-19We live in an ANSI C world. Remove lots of gratuitous #ifdef __STDC__ cruft.Todd C. Miller
2001-07-09a first pass at -WallTheo de Raadt
1998-01-20Better fix for %n and whitespace. Chris Torek <torek@bsdi.com>Todd C. Miller
1998-01-19Ignore whitespace separating a conversion and %n. There may beTodd C. Miller
a cleaner way to do this.
1997-07-25#if __STDC__ --> #ifdef __STDC__Michael Shalayeff
1996-09-15Remove dead codeThorsten Lockert
Remove unused variables Silence some warnings lint(1) is your friend
1996-08-19Fix RCS idsThorsten Lockert
Make sure everything uses {SYS,}LIBC_SCCS properly
1995-10-18initial import of NetBSD treeTheo de Raadt