diff options
author | David Marx <David.Marx@Sun.COM> | 2010-06-03 14:35:16 -0700 |
---|---|---|
committer | David Marx <David.Marx@Sun.COM> | 2010-06-03 14:35:16 -0700 |
commit | 27954b0d964ffcb749cf19296906e7fecdf3da1b (patch) | |
tree | c8d69775eb24b91b00bf299381358fcce7bec2d9 | |
parent | 707e74bc53cd429bcd731df722227c7dc2de47c6 (diff) | |
download | illumos-gate-27954b0d964ffcb749cf19296906e7fecdf3da1b.tar.gz |
1240072 tgoto function prototype should be in <term.h>
-rw-r--r-- | usr/src/lib/libcurses/screen/copyright.h | 10 | ||||
-rw-r--r-- | usr/src/lib/libcurses/screen/maketerm.ed | 11 |
2 files changed, 5 insertions, 16 deletions
diff --git a/usr/src/lib/libcurses/screen/copyright.h b/usr/src/lib/libcurses/screen/copyright.h index bb980e8301..9ec722fd92 100644 --- a/usr/src/lib/libcurses/screen/copyright.h +++ b/usr/src/lib/libcurses/screen/copyright.h @@ -2,9 +2,8 @@ * CDDL HEADER START * * The contents of this file are subject to the terms of the - * Common Development and Distribution License, Version 1.0 only - * (the "License"). You may not use this file except in compliance - * with the License. + * Common Development and Distribution License (the "License"). + * You may not use this file except in compliance with the License. * * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE * or http://www.opensolaris.org/os/licensing. @@ -20,8 +19,7 @@ * CDDL HEADER END */ /* - * Copyright 2005 Sun Microsystems, Inc. All rights reserved. - * Use is subject to license terms. + * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. */ /* Copyright (c) 1988 AT&T */ @@ -36,5 +34,3 @@ * software developed by the University of California, Berkeley, and its * contributors. */ - -#pragma ident "%Z%%M% %I% %E% SMI" diff --git a/usr/src/lib/libcurses/screen/maketerm.ed b/usr/src/lib/libcurses/screen/maketerm.ed index fcaf80c1ac..0b2fbb5bc6 100644 --- a/usr/src/lib/libcurses/screen/maketerm.ed +++ b/usr/src/lib/libcurses/screen/maketerm.ed @@ -176,8 +176,6 @@ w strvals 1,$d r tnames.c 1i -#pragma ident "%Z%%M% %I% %E% SMI" - /* tnames.c: Made automatically from caps and maketerm.ed - don't edit me! */ . 1,$s/ $// @@ -187,8 +185,6 @@ w tnames.c 1,$d r tinames.c 1i -#pragma ident "%Z%%M% %I% %E% SMI" - /* tinames.c: Made automatically from caps and maketerm.ed - don't edit me! */ . 1,$s/ $// @@ -198,8 +194,6 @@ w tinames.c 1,$d r tifnames.c 1i -#pragma ident "%Z%%M% %I% %E% SMI" - /* tifnames.c: Made automatically from caps and maketerm.ed - don't edit me! */ . 1,$s/ $// @@ -339,8 +333,6 @@ e ./tmp/term.h.new #ifndef _TERM_H #define _TERM_H -#pragma ident "%Z%%M% %I% %E% SMI" - /* * term.h - this file is automatically made from caps and maketerm.ed. * Don't make changes directly to term.h. @@ -568,7 +560,8 @@ extern char extern char *tparm(); #endif -extern char *tgetstr(char *, char **), +extern char *tgoto(char *, int, int), + *tgetstr(char *, char **), *tigetstr(char *), *termname(void); |