diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-07-03 21:40:46 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-07-03 21:40:46 +0000 |
commit | 6f98fd7ebb025b6aa3731139c1897bd46a6278fb (patch) | |
tree | 3ad7eea0344dea3564fff300949b55d3bc8f1163 /stdio-common/Makefile | |
parent | 4a9e89d5eaf441ab9c834b92f5042eeebb9ffa63 (diff) | |
download | glibc-6f98fd7ebb025b6aa3731139c1897bd46a6278fb.tar glibc-6f98fd7ebb025b6aa3731139c1897bd46a6278fb.tar.gz glibc-6f98fd7ebb025b6aa3731139c1897bd46a6278fb.tar.bz2 glibc-6f98fd7ebb025b6aa3731139c1897bd46a6278fb.zip |
Update.
2000-07-03 Ulrich Drepper <drepper@redhat.com>
* libio/genops.c (__overflow): Use _IO_fwide to orient the stream.
(__uflow): Likewise.
(__underflow): Likewise.
* libio/wgenops.c (__wunderflow): Likewise.
* stdio-common/tst-unbputc.c: New file.
* stdio-common/tst-unbputc.sh: New file.
* stdio-common/Makefile: Add rules to build and run tst-unbputc.
* po/en_GB.po: New file.
Contributed by Robert Brady <rwb197@ecs.soton.ac.uk>.
Diffstat (limited to 'stdio-common/Makefile')
-rw-r--r-- | stdio-common/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/stdio-common/Makefile b/stdio-common/Makefile index 85f3b8ec1a..1cffe9b65d 100644 --- a/stdio-common/Makefile +++ b/stdio-common/Makefile @@ -56,8 +56,17 @@ tests := tst-printf tstscanf test_rdwr test-popen tstgetln test-fseek \ scanf1 scanf2 scanf3 scanf4 scanf5 scanf7 scanf8 scanf9 scanf10 \ scanf12 tst-tmpnam tst-cookie tst-obprintf +test-srcs = tst-unbputc + include ../Rules +.PHONY: do-tst-unbputc +tests: do-tst-unbputc + +do-tst-unbputc: $(objpfx)tst-unbputc.out +$(objpfx)tst-unbputc.out: $(objpfx)tst-unbputc tst-unbputc.sh + $(SHELL) -e tst-unbputc.sh $(common-objpfx) + CFLAGS-vfprintf.c = -Wno-uninitialized CFLAGS-tst-printf.c = -Wno-format CFLAGS-tstdiomisc.c = -Wno-format |