diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2000-03-08 03:42:25 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2000-03-08 03:42:25 +0000 |
commit | c505305855a5c7c999c7adfa0271436b3ff6ee55 (patch) | |
tree | f6188d601b09fdfc2383e46f7f47dbc06b556187 /newlib/libc/stdio/Makefile.in | |
parent | cba95ef1c87ef752799560af1cb978fbaa0cee38 (diff) | |
download | cygnal-c505305855a5c7c999c7adfa0271436b3ff6ee55.tar.gz cygnal-c505305855a5c7c999c7adfa0271436b3ff6ee55.tar.bz2 cygnal-c505305855a5c7c999c7adfa0271436b3ff6ee55.zip |
* libc/stdio/Makefile.am (lib_a_SOURCES): Added getw.c and putw.c.
(CHEWOUT_FILES): Added getw.def and putw.def.
* libc/stdio/Makefile.in: Rebuilt.
* libc/stdio/stdio.tex: Include getw.def and putw.def.
* libc/stdio/getw.c: New file.
* libc/stdio/putw.c: New file.
Diffstat (limited to 'newlib/libc/stdio/Makefile.in')
-rw-r--r-- | newlib/libc/stdio/Makefile.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/newlib/libc/stdio/Makefile.in b/newlib/libc/stdio/Makefile.in index ff2a83845..2f487a19f 100644 --- a/newlib/libc/stdio/Makefile.in +++ b/newlib/libc/stdio/Makefile.in @@ -118,6 +118,7 @@ lib_a_SOURCES = \ getc.c \ getchar.c \ gets.c \ + getw.c \ iprintf.c \ makebuf.c \ mktemp.c \ @@ -126,6 +127,7 @@ lib_a_SOURCES = \ putc.c \ putchar.c \ puts.c \ + putw.c \ refill.c \ remove.c \ rename.c \ @@ -177,12 +179,14 @@ CHEWOUT_FILES = \ getc.def \ getchar.def \ gets.def \ + getw.def \ iprintf.def \ mktemp.def \ perror.def \ putc.def \ putchar.def \ puts.def \ + putw.def \ remove.def \ rename.def \ rewind.def \ @@ -216,8 +220,8 @@ lib_a_DEPENDENCIES = vfiprintf.o lib_a_OBJECTS = clearerr.o fclose.o fdopen.o feof.o ferror.o fflush.o \ fgetc.o fgetpos.o fgets.o fileno.o findfp.o fiprintf.o flags.o fopen.o \ fprintf.o fputc.o fputs.o fread.o freopen.o fscanf.o fseek.o fsetpos.o \ -ftell.o fvwrite.o fwalk.o fwrite.o getc.o getchar.o gets.o iprintf.o \ -makebuf.o mktemp.o perror.o printf.o putc.o putchar.o puts.o refill.o \ +ftell.o fvwrite.o fwalk.o fwrite.o getc.o getchar.o gets.o getw.o iprintf.o \ +makebuf.o mktemp.o perror.o printf.o putc.o putchar.o puts.o putw.o refill.o \ remove.o rename.o rewind.o rget.o scanf.o setbuf.o setvbuf.o siprintf.o \ snprintf.o sprintf.o sscanf.o stdio.o tmpfile.o tmpnam.o ungetc.o \ vfprintf.o vfscanf.o vprintf.o vsnprintf.o vsprintf.o wbuf.o wsetup.o |