summaryrefslogtreecommitdiff
path: root/libc/stdio/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-04-18 20:13:13 +0000
committerEric Andersen <andersen@codepoet.org>2001-04-18 20:13:13 +0000
commit0fe8d5df2c21ce62cea6cfb426965dab019af3c6 (patch)
treeb302e7a7c3ff8d393183b64a4f44018e664de881 /libc/stdio/Makefile
parent7b6a9548ee32cb45913384fd321f53f46fcd1d3d (diff)
Update temp file handling and use a single function to do all
the heavy lifting (most of the heavy lifting stolen from glibc, but reduced a bit).
Diffstat (limited to 'libc/stdio/Makefile')
-rw-r--r--libc/stdio/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdio/Makefile b/libc/stdio/Makefile
index 26ab9cfcc..3aec83dd1 100644
--- a/libc/stdio/Makefile
+++ b/libc/stdio/Makefile
@@ -41,7 +41,7 @@ MOBJ2=printf.o sprintf.o fprintf.o vprintf.o vsprintf.o vfprintf.o snprintf.o \
MSRC3=scanf.c
MOBJ3=scanf.o sscanf.o fscanf.o vscanf.o vsscanf.o vfscanf.o
-CSRC=popen.c perror.c remove.c getdelim.c getline.c tmpnam.c tmpnam_r.c
+CSRC=popen.c perror.c remove.c getdelim.c getline.c tmpfile.c tmpnam.c tmpnam_r.c
COBJS=$(patsubst %.c,%.o, $(CSRC))
OBJS=$(MOBJ) $(MOBJ2) $(MOBJ3) $(COBJS)