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