diff options
author | 2016-03-30 06:38:40 +0000 | |
---|---|---|
committer | 2016-03-30 06:38:40 +0000 | |
commit | faa33665ab2c5a685369c10172c1a3d7555eb253 (patch) | |
tree | db73fb627d975e66d5b679bd8305f43a980a9efc /lib/libc/stdio | |
parent | sync (diff) | |
download | wireguard-openbsd-faa33665ab2c5a685369c10172c1a3d7555eb253.tar.xz wireguard-openbsd-faa33665ab2c5a685369c10172c1a3d7555eb253.zip |
for some time now mandoc has not required MLINKS to function
correctly - logically complete that now by removing MLINKS from base;
authors need only to ensure there is an entry in NAME for any function/
util being added. MLINKS will still work, and remain for perl to ease
upgrades;
ok nicm (curses) bcook (ssl)
ok schwarze, who provided a lot of feedback and assistance
ok tb natano jung
Diffstat (limited to 'lib/libc/stdio')
-rw-r--r-- | lib/libc/stdio/Makefile.inc | 35 |
1 files changed, 1 insertions, 34 deletions
diff --git a/lib/libc/stdio/Makefile.inc b/lib/libc/stdio/Makefile.inc index f000047f00a..00ae1b2c2b6 100644 --- a/lib/libc/stdio/Makefile.inc +++ b/lib/libc/stdio/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.28 2015/01/12 20:58:07 millert Exp $ +# $OpenBSD: Makefile.inc,v 1.29 2016/03/30 06:38:41 jmc Exp $ # stdio sources .PATH: ${LIBCSRCDIR}/stdio @@ -26,36 +26,3 @@ MAN+= fclose.3 ferror.3 fflush.3 fgetln.3 fgets.3 fgetwln.3 fmemopen.3 \ open_memstream.3 perror.3 printf.3 putc.3 remove.3 scanf.3 setbuf.3 \ setvbuf.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 - -MLINKS+=ferror.3 clearerr.3 ferror.3 feof.3 ferror.3 fileno.3 -MLINKS+=fflush.3 fpurge.3 -MLINKS+=fopen.3 fdopen.3 fopen.3 freopen.3 -MLINKS+=fputs.3 puts.3 -MLINKS+=fread.3 fwrite.3 -MLINKS+=fseek.3 fgetpos.3 fseek.3 fsetpos.3 fseek.3 ftell.3 fseek.3 rewind.3 -MLINKS+=fseek.3 fseeko.3 fseek.3 ftello.3 -MLINKS+=funopen.3 fropen.3 funopen.3 fwopen.3 -MLINKS+=getc.3 fgetc.3 getc.3 getchar.3 getc.3 getw.3 -MLINKS+=getdelim.3 getline.3 -MLINKS+=mktemp.3 mkstemp.3 -MLINKS+=mktemp.3 mkdtemp.3 -MLINKS+=mktemp.3 mkstemps.3 -MLINKS+=mktemp.3 mkostemp.3 -MLINKS+=mktemp.3 mkostemps.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 \ - printf.3 dprintf.3 printf.3 vdprintf.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 -MLINKS+=setbuf.3 setbuffer.3 setbuf.3 setlinebuf.3 -MLINKS+=tmpnam.3 tempnam.3 tmpnam.3 tmpfile.3 -MLINKS+=wprintf.3 fwprintf.3 wprintf.3 swprintf.3 wprintf.3 vwprintf.3 \ - wprintf.3 vfwprintf.3 wprintf.3 vswprintf.3 -MLINKS+=wscanf.3 fwscanf.3 wscanf.3 swscanf.3 wscanf.3 vfwscanf.3 wscanf.3 \ - vswscanf.3 wscanf.3 vwscanf.3 - -MLINKS+=getwc.3 fgetwc.3 getwc.3 getwchar.3 -MLINKS+=putwc.3 fputwc.3 putwc.3 putwchar.3 |