summaryrefslogtreecommitdiff
path: root/lib/libc/stdio
diff options
context:
space:
mode:
authorEric Faurot <eric@cvs.openbsd.org>2013-03-28 16:37:15 +0000
committerEric Faurot <eric@cvs.openbsd.org>2013-03-28 16:37:15 +0000
commitb579127f62f14e7d9be821d04764992d5632d5f7 (patch)
tree673840367256605c7de067a147c9361670dc9e78 /lib/libc/stdio
parent259da6eb12f03ddfe324d8469d70fbcdb71a5386 (diff)
Enable fmemopen(3) and open_{w,}memstream(3)
commiting on behalf of mpi@
Diffstat (limited to 'lib/libc/stdio')
-rw-r--r--lib/libc/stdio/Makefile.inc25
1 files changed, 13 insertions, 12 deletions
diff --git a/lib/libc/stdio/Makefile.inc b/lib/libc/stdio/Makefile.inc
index caee57667a0..802e96b568b 100644
--- a/lib/libc/stdio/Makefile.inc
+++ b/lib/libc/stdio/Makefile.inc
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.inc,v 1.23 2013/01/30 00:08:13 brad Exp $
+# $OpenBSD: Makefile.inc,v 1.24 2013/03/28 16:37:13 eric Exp $
# stdio sources
.PATH: ${LIBCSRCDIR}/stdio
@@ -6,24 +6,24 @@
CFLAGS+=-DFLOATING_POINT -DPRINTF_WIDE_CHAR -DSCANF_WIDE_CHAR
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 \
+ fgetln.c fgetpos.c fgets.c fileno.c findfp.c flags.c fmemopen.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 vasprintf.c vfprintf.c \
- vfscanf.c vprintf.c vscanf.c vsnprintf.c vsprintf.c vsscanf.c \
- wbuf.c wsetup.c flockfile.c \
+ getc.c getchar.c gets.c getw.c makebuf.c mktemp.c open_memstream.c \
+ open_wmemstream.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 vasprintf.c vfprintf.c vfscanf.c vprintf.c vscanf.c \
+ vsnprintf.c vsprintf.c vsscanf.c wbuf.c wsetup.c flockfile.c \
fgetwc.c fgetws.c fputwc.c fputws.c fwide.c getwc.c getwchar.c \
putwc.c putwchar.c ungetwc.c \
fwprintf.c swprintf.c vfwprintf.c vswprintf.c vwprintf.c wprintf.c \
fwscanf.c swscanf.c vfwscanf.c vswscanf.c vwscanf.c wscanf.c \
getdelim.c getline.c dprintf.c vdprintf.c
-MAN+= fclose.3 ferror.3 fflush.3 fgetln.3 fgets.3 fopen.3 fputs.3 \
- fread.3 fseek.3 funopen.3 getc.3 mktemp.3 perror.3 printf.3 putc.3 \
- remove.3 scanf.3 setbuf.3 stdio.3 tmpnam.3 ungetc.3 \
+MAN+= fclose.3 ferror.3 fflush.3 fgetln.3 fgets.3 fmemopen.3 fopen.3 fputs.3 \
+ fread.3 fseek.3 funopen.3 getc.3 mktemp.3 open_memstream.3 perror.3 \
+ printf.3 putc.3 remove.3 scanf.3 setbuf.3 stdio.3 tmpnam.3 ungetc.3 \
fgetws.3 fputws.3 fwide.3 getwc.3 putwc.3 ungetwc.3 wprintf.3 wscanf.3 \
getdelim.3
@@ -41,6 +41,7 @@ MLINKS+=getdelim.3 getline.3
MLINKS+=mktemp.3 mkstemp.3
MLINKS+=mktemp.3 mkdtemp.3
MLINKS+=mktemp.3 mkstemps.3
+MLINKS+=open_memstream.3 open_wmemstream.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 asprintf.3 printf.3 vasprintf.3 \