View | Details | Raw Unified | Return to bug 470
Collapse All | Expand All

(-)configure.ac (-1 / +1 lines)
Lines 606-612 Link Here
606
	realpath recvmsg rresvport_af sendmsg setdtablesize setegid \
606
	realpath recvmsg rresvport_af sendmsg setdtablesize setegid \
607
	setenv seteuid setgroups setlogin setproctitle setresgid setreuid \
607
	setenv seteuid setgroups setlogin setproctitle setresgid setreuid \
608
	setrlimit setsid setpcred setvbuf sigaction sigvec snprintf \
608
	setrlimit setsid setpcred setvbuf sigaction sigvec snprintf \
609
	socketpair strerror strlcat strlcpy strmode strvis sysconf \
609
	socketpair strerror strlcat strlcpy strmode strnvis sysconf \
610
	tcgetpgrp truncate utimes vhangup vsnprintf waitpid __b64_ntop \
610
	tcgetpgrp truncate utimes vhangup vsnprintf waitpid __b64_ntop \
611
	_getpty)
611
	_getpty)
612
612
(-)openbsd-compat/vis.c (-1 / +1 lines)
Lines 31-37 Link Here
31
 * SUCH DAMAGE.
31
 * SUCH DAMAGE.
32
 */
32
 */
33
#include "config.h"
33
#include "config.h"
34
#if !defined(HAVE_STRVIS)
34
#if !defined(HAVE_STRNVIS)
35
35
36
#if defined(LIBC_SCCS) && !defined(lint)
36
#if defined(LIBC_SCCS) && !defined(lint)
37
static char rcsid[] = "$OpenBSD: vis.c,v 1.8 2002/02/19 19:39:36 millert Exp $";
37
static char rcsid[] = "$OpenBSD: vis.c,v 1.8 2002/02/19 19:39:36 millert Exp $";
(-)openbsd-compat/vis.h (-2 / +2 lines)
Lines 36-42 Link Here
36
 *	@(#)vis.h	5.9 (Berkeley) 4/3/91
36
 *	@(#)vis.h	5.9 (Berkeley) 4/3/91
37
 */
37
 */
38
#include "config.h"
38
#include "config.h"
39
#if !defined(HAVE_STRVIS)
39
#if !defined(HAVE_STRNVIS)
40
40
41
#ifndef _VIS_H_
41
#ifndef _VIS_H_
42
#define	_VIS_H_
42
#define	_VIS_H_
Lines 88-91 Link Here
88
88
89
#endif /* !_VIS_H_ */
89
#endif /* !_VIS_H_ */
90
90
91
#endif /* !HAVE_STRVIS */
91
#endif /* !HAVE_STRNVIS */

Return to bug 470