diff options
Diffstat (limited to 'libc/stdio/Makefile.in')
-rw-r--r-- | libc/stdio/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libc/stdio/Makefile.in b/libc/stdio/Makefile.in index 1ca2dcff4..ff77bcb6a 100644 --- a/libc/stdio/Makefile.in +++ b/libc/stdio/Makefile.in @@ -18,11 +18,14 @@ CSRC := \ setlinebuf.c setvbuf.c ungetc.c \ printf.c vprintf.c vsprintf.c fprintf.c snprintf.c dprintf.c \ asprintf.c sprintf.c vasprintf.c vdprintf.c vsnprintf.c \ - tmpfile.c tmpnam.c tmpnam_r.c popen.c tempnam.c ctermid.c + tmpfile.c popen.c ctermid.c ifeq ($(UCLIBC_HAS_LFS),y) CSRC += fgetpos64.c fopen64.c freopen64.c fseeko64.c fsetpos64.c ftello64.c endif +ifeq ($(UCLIBC_SUSV4_LEGACY),y) +CSRC += tmpnam.c tmpnam_r.c tempnam.c +endif # getc -> alias for fgetc # putc -> alias for fputc |