diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2003-09-05 06:50:56 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2003-09-05 06:50:56 +0000 |
commit | f467902b7947a6064b35605dfd2ee74367b80785 (patch) | |
tree | ab4657c10c04cac77e96fc73f33a3e8058a8a5cc | |
parent | f88c789f2a33ba245027aee2c985e46961e55aff (diff) |
Always build _store_inttype since it is used by the new scanf.
-rw-r--r-- | libc/stdio/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/stdio/Makefile b/libc/stdio/Makefile index 271fe7207..44ce51848 100644 --- a/libc/stdio/Makefile +++ b/libc/stdio/Makefile @@ -49,7 +49,8 @@ MOBJ = fclose.o fflush.o fopen.o freopen.o perror.o remove.o \ MSRC2= printf.c MOBJ2= vsnprintf.o vdprintf.o vasprintf.o vprintf.o vsprintf.o \ - fprintf.o snprintf.o dprintf.o asprintf.o printf.o sprintf.o + fprintf.o snprintf.o dprintf.o asprintf.o printf.o sprintf.o \ + _store_inttype.o MSRC3=scanf.c MOBJ3=scanf.o sscanf.o fscanf.o vscanf.o vsscanf.o vfscanf.o \ @@ -64,8 +65,7 @@ endif ifneq ($(USE_OLD_VFPRINTF),y) MOBJ2 += _ppfs_init.o _ppfs_prepargs.o _ppfs_setargs.o \ - _ppfs_parsespec.o vfprintf.o \ - _store_inttype.o _load_inttype.o \ + _ppfs_parsespec.o vfprintf.o _load_inttype.o \ register_printf_function.o parse_printf_format.o endif |