diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-06-23 06:22:36 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-06-23 06:22:36 +0000 |
commit | e8595e842f199619bc8fb5f97d45e20f580aa987 (patch) | |
tree | bffeb32ab9dba1c464d59b3325fb4852455454aa /libio/Makefile | |
parent | e7d3a52aa5c98420b545cf0438f760be95219f49 (diff) | |
download | glibc-e8595e842f199619bc8fb5f97d45e20f580aa987.tar.gz glibc-e8595e842f199619bc8fb5f97d45e20f580aa987.tar.xz glibc-e8595e842f199619bc8fb5f97d45e20f580aa987.zip |
Update.
* libio/Makefile (tests): Add tst-getwc and tst_putwc. (CFLAGS-tst_putwc.c): New definition. * libio/tst_getwc.c: New file. * libio/tst_getwc.input: New file. * libio/tst_putwc.c: New file.
Diffstat (limited to 'libio/Makefile')
-rw-r--r-- | libio/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libio/Makefile b/libio/Makefile index a37445213e..e636c19c82 100644 --- a/libio/Makefile +++ b/libio/Makefile @@ -43,7 +43,7 @@ routines := \ \ libc_fatal -tests = tst_swprintf tst_wprintf tst_swscanf tst_wscanf +tests = tst_swprintf tst_wprintf tst_swscanf tst_wscanf tst_getwc tst_putwc all: # Make this the default target; it will be defined in Rules. @@ -63,6 +63,8 @@ routines += clearerr_u feof_u ferror_u fputc_u getc_u getchar_u \ CPPFLAGS += -D_IO_MTSAFE_IO endif +CFLAGS-tst_putwc.c = -DOBJPFX=\"$(objpfx)\" + aux := fileops genops stdfiles stdio strops ifeq ($(versioning),yes) |