diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-11-29 19:57:16 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-11-29 19:57:16 +0000 |
commit | 6fd0c3ed3c8f0924a6a4767a73c92c12dc498b88 (patch) | |
tree | 5a07bd8217786b4668b4929dc0c2397c07f7764d | |
parent | 024ba423ea0a307412d5003ef9850338156bf5a5 (diff) |
Build asprintf.c and vasprintf.c
-rw-r--r-- | lib/libc/stdio/Makefile.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/stdio/Makefile.inc b/lib/libc/stdio/Makefile.inc index 893fdf86fbe..31a9d19e2e9 100644 --- a/lib/libc/stdio/Makefile.inc +++ b/lib/libc/stdio/Makefile.inc @@ -1,18 +1,18 @@ -# $OpenBSD: Makefile.inc,v 1.3 1997/09/26 18:03:40 millert Exp $ +# $OpenBSD: Makefile.inc,v 1.4 1997/11/29 19:57:15 millert Exp $ # stdio sources .PATH: ${.CURDIR}/stdio CFLAGS+=-DFLOATING_POINT -SRCS+= clrerr.c fclose.c fdopen.c feof.c ferror.c fflush.c fgetc.c \ +SRCS+= asprintf.c clrerr.c fclose.c fdopen.c feof.c ferror.c fflush.c fgetc.c \ fgetln.c fgetpos.c fgets.c fileno.c findfp.c flags.c fopen.c \ fprintf.c fpurge.c fputc.c fputs.c fread.c freopen.c fscanf.c \ fseek.c fsetpos.c ftell.c funopen.c fvwrite.c fwalk.c fwrite.c \ getc.c getchar.c gets.c getw.c makebuf.c mktemp.c perror.c printf.c \ putc.c putchar.c puts.c putw.c refill.c remove.c rewind.c rget.c \ scanf.c setbuf.c setbuffer.c setvbuf.c snprintf.c sprintf.c sscanf.c \ - stdio.c tempnam.c tmpfile.c tmpnam.c ungetc.c vfprintf.c \ + stdio.c tempnam.c tmpfile.c tmpnam.c ungetc.c vasprintf.c vfprintf.c \ vfscanf.c vprintf.c vscanf.c vsnprintf.c vsprintf.c vsscanf.c \ wbuf.c wsetup.c @@ -33,7 +33,7 @@ MLINKS+=mktemp.3 mkstemp.3 MLINKS+=mktemp.3 mkdtemp.3 MLINKS+=printf.3 fprintf.3 printf.3 snprintf.3 printf.3 sprintf.3 \ printf.3 vfprintf.3 printf.3 vprintf.3 printf.3 vsnprintf.3 \ - printf.3 vsprintf.3 + printf.3 vsprintf.3 printf.3 asprintf.3 printf.3 vasprintf.3 MLINKS+=putc.3 fputc.3 putc.3 putchar.3 putc.3 putw.3 MLINKS+=scanf.3 fscanf.3 scanf.3 sscanf.3 scanf.3 vfscanf.3 scanf.3 vscanf.3 \ scanf.3 vsscanf.3 |