diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2001-02-19 20:33:38 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2001-02-19 20:33:38 +0000 |
commit | 93ccb0356b10af44f620ec035fb76fa8a1165c22 (patch) | |
tree | 4236a7ae9ea4fc4b07b88fc82e99d4f44dfdeeb6 /libc/stdio/Makefile | |
parent | 13793a7b4d7aa4c36f42c46643c0457a05071ba5 (diff) |
Fix a couple of bugs in _fopen and fclose, plus change a few internals.
Diffstat (limited to 'libc/stdio/Makefile')
-rw-r--r-- | libc/stdio/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libc/stdio/Makefile b/libc/stdio/Makefile index 7c6b9116a..3c0103e52 100644 --- a/libc/stdio/Makefile +++ b/libc/stdio/Makefile @@ -35,7 +35,9 @@ ifeq ($(HAS_LONG_LONG),true) endif MSRC=stdio.c -MOBJ=_stdio_init.o _stdio_buffer.o clearerr.o feof.o ferror.o fileno.o \ +MOBJ=_stdio_init.o \ + _alloc_stdio_buffer.o _free_stdio_buffer.o _free_stdio_stream.o \ + clearerr.o feof.o ferror.o fileno.o \ setbuffer.o setvbuf.o setbuf.o setlinebuf.o \ fclose.o _fopen.o fopen.o freopen.o fdopen.o fflush.o \ fseek.o rewind.o ftell.o fgetpos.o fsetpos.o \ |