_insstr.c revision 2
1066N/A/*
2362N/A * CDDL HEADER START
1066N/A *
1066N/A * The contents of this file are subject to the terms of the
1066N/A * Common Development and Distribution License, Version 1.0 only
1066N/A * (the "License"). You may not use this file except in compliance
1066N/A * with the License.
1066N/A *
1066N/A * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
1066N/A * or http://www.opensolaris.org/os/licensing.
1066N/A * See the License for the specific language governing permissions
1066N/A * and limitations under the License.
1066N/A *
1066N/A * When distributing Covered Code, include this CDDL HEADER in each
1066N/A * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1066N/A * If applicable, add the following below this CDDL HEADER, with the
1066N/A * fields enclosed by brackets "[]" replaced with your own identifying
1066N/A * information: Portions Copyright [yyyy] [name of copyright owner]
2362N/A *
2362N/A * CDDL HEADER END
2362N/A */
1066N/A/*
1066N/A * Copyright 1997 Sun Microsystems, Inc. All rights reserved.
1066N/A * Use is subject to license terms.
1066N/A */
1066N/A
1066N/A/* Copyright (c) 1988 AT&T */
1066N/A/* All Rights Reserved */
1066N/A
1066N/A/*
1066N/A * University Copyright- Copyright (c) 1982, 1986, 1988
1066N/A * The Regents of the University of California
1066N/A * All Rights Reserved
1066N/A *
1066N/A * University Acknowledgment- Portions of this document are derived from
1066N/A * software developed by the University of California, Berkeley, and its
1066N/A * contributors.
1066N/A */
1066N/A
1066N/A#pragma ident "%Z%%M% %I% %E% SMI"
1066N/A
1066N/A/*LINTLIBRARY*/
1066N/A
1066N/A#define NOMACROS
1066N/A#include <sys/types.h>
1066N/A#include "curses_inc.h"
1066N/A
1066N/Aint
1066N/Ainsstr(char *s)
1066N/A{
1066N/A return (winsstr(stdscr, s));
1066N/A}
1066N/A