diff options
author | Stefan Sperling <stsp@cvs.openbsd.org> | 2012-01-18 14:01:39 +0000 |
---|---|---|
committer | Stefan Sperling <stsp@cvs.openbsd.org> | 2012-01-18 14:01:39 +0000 |
commit | 65492c94f0b4a4ef230c79d753844d967d093c16 (patch) | |
tree | a26899a2496837f64049925b8be7ca0d676faa48 /distrib/special | |
parent | 8b26bf89ccbe3141f9bfc2d16068ae00b9eb9bba (diff) |
Add support for C99 %ls, %lc, and %l[ format directives to scanf(3).
Based on code from FreeBSD.
Tested by myself (full release/install cycle on i386 and sparc64) and ajacoutot.
Man page help from jmc.
Diffstat (limited to 'distrib/special')
-rw-r--r-- | distrib/special/libstubs/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/special/libstubs/Makefile b/distrib/special/libstubs/Makefile index 73daca0762f..32f594ff6d2 100644 --- a/distrib/special/libstubs/Makefile +++ b/distrib/special/libstubs/Makefile @@ -1,10 +1,10 @@ -# $OpenBSD: Makefile,v 1.8 2010/10/13 16:11:26 deraadt Exp $ +# $OpenBSD: Makefile,v 1.9 2012/01/18 14:01:38 stsp Exp $ .include <bsd.own.mk> LIB= stubs SRCS= db.c setlocale.c sha1.c sha2.c getgrent.c getpwent.c \ ethers.c getaddrinfo.c gethostnamadr.c getnetnamadr.c \ - mbrtowc_sb.c vfprintf.c + mbrtowc_sb.c sscanf.c vfprintf.c vfscanf.c NOPIC= Yes NOPROFILE=Yes NOMAN= 1 |