29 lines
682 B
C
29 lines
682 B
C
/* Copyright (c) 1990, 1991 UNIX System Laboratories, Inc. */
|
|
/* Copyright (c) 1988 AT&T */
|
|
/* All Rights Reserved */
|
|
|
|
/* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF */
|
|
/* UNIX System Laboratories, Inc. */
|
|
/* The copyright notice above does not evidence any */
|
|
/* actual or intended publication of such source code. */
|
|
|
|
#ident "@(#)curses:screen/V3.vidattr.c 1.3"
|
|
|
|
#include "curses_inc.h"
|
|
#ifdef __STDC__
|
|
extern int _outchar(int);
|
|
#else
|
|
extern int _outchar();
|
|
#endif
|
|
|
|
#ifdef _VR3_COMPAT_CODE
|
|
#undef vidattr
|
|
|
|
int
|
|
vidattr(_ochtype a)
|
|
{
|
|
vidupdate(_FROM_OCHTYPE(a), cur_term->sgr_mode, _outchar);
|
|
return (OK);
|
|
}
|
|
#endif /* _VR3_COMPAT_CODE */
|