From 87c6fcf88559d03de3f8630e6ce6f000a2dd5ae1 Mon Sep 17 00:00:00 2001 From: Distribution Folks Date: Fri, 7 Jun 1985 18:46:48 -0800 Subject: [PATCH] Add copyright SCCS-vsn: lib/libcurses/insertln.c 5.1 SCCS-vsn: lib/libcurses/longname.c 5.1 SCCS-vsn: lib/libcurses/move.c 5.1 SCCS-vsn: lib/libcurses/mvprintw.c 5.1 SCCS-vsn: lib/libcurses/mvscanw.c 5.1 SCCS-vsn: lib/libcurses/mvwin.c 5.1 SCCS-vsn: lib/libcurses/newwin.c 5.1 SCCS-vsn: lib/libcurses/overlay.c 5.1 SCCS-vsn: lib/libcurses/overwrite.c 5.1 SCCS-vsn: lib/libcurses/printw.c 5.1 SCCS-vsn: lib/libcurses/putchar.c 5.1 SCCS-vsn: lib/libcurses/scanw.c 5.1 SCCS-vsn: lib/libcurses/scroll.c 5.1 SCCS-vsn: lib/libcurses/standout.c 5.1 SCCS-vsn: lib/libcurses/toucholap.c 5.1 SCCS-vsn: lib/libcurses/touchwin.c 5.1 SCCS-vsn: lib/libcurses/curses.h 5.1 SCCS-vsn: lib/libcurses/curses.ext 5.1 --- usr/src/lib/libcurses/curses.ext | 10 +++++++++- usr/src/lib/libcurses/curses.h | 9 ++++++++- usr/src/lib/libcurses/insertln.c | 11 ++++++++++- usr/src/lib/libcurses/longname.c | 11 ++++++++++- usr/src/lib/libcurses/move.c | 11 ++++++++++- usr/src/lib/libcurses/mvprintw.c | 11 ++++++++++- usr/src/lib/libcurses/mvscanw.c | 11 ++++++++++- usr/src/lib/libcurses/mvwin.c | 11 ++++++++++- usr/src/lib/libcurses/newwin.c | 11 ++++++++++- usr/src/lib/libcurses/overlay.c | 11 ++++++++++- usr/src/lib/libcurses/overwrite.c | 11 ++++++++++- usr/src/lib/libcurses/printw.c | 11 ++++++++++- usr/src/lib/libcurses/putchar.c | 13 ++++++++++--- usr/src/lib/libcurses/scanw.c | 11 ++++++++++- usr/src/lib/libcurses/scroll.c | 11 ++++++++++- usr/src/lib/libcurses/standout.c | 11 ++++++++++- usr/src/lib/libcurses/toucholap.c | 11 ++++++++++- usr/src/lib/libcurses/touchwin.c | 11 ++++++++++- 18 files changed, 177 insertions(+), 20 deletions(-) diff --git a/usr/src/lib/libcurses/curses.ext b/usr/src/lib/libcurses/curses.ext index 3a4f1a0c43..a53d3ebc32 100644 --- a/usr/src/lib/libcurses/curses.ext +++ b/usr/src/lib/libcurses/curses.ext @@ -1,4 +1,12 @@ -/* curses.ext 1.3 83/07/02 */ +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +static char sccsid[] = "@(#)curses.ext 5.1 (Berkeley) %G%"; +#endif not lint /* * External variables for the curses library diff --git a/usr/src/lib/libcurses/curses.h b/usr/src/lib/libcurses/curses.h index 5a2049074c..fd21ebb46e 100644 --- a/usr/src/lib/libcurses/curses.h +++ b/usr/src/lib/libcurses/curses.h @@ -1,4 +1,11 @@ -/* %G% (Berkeley) @(#)curses.h 1.16 */ +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + * + * @(#)curses.h 5.1 (Berkeley) %G% + */ + # ifndef WINDOW # include diff --git a/usr/src/lib/libcurses/insertln.c b/usr/src/lib/libcurses/insertln.c index 5a54bb4895..92b6444336 100644 --- a/usr/src/lib/libcurses/insertln.c +++ b/usr/src/lib/libcurses/insertln.c @@ -1,10 +1,19 @@ +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +static char sccsid[] = "@(#)insertln.c 5.1 (Berkeley) %G%"; +#endif not lint + # include "curses.ext" /* * This routine performs an insert-line on the window, leaving * (_cury,_curx) unchanged. * - * @(#)insertln.c 1.5 (Berkeley) %G% */ winsertln(win) reg WINDOW *win; { diff --git a/usr/src/lib/libcurses/longname.c b/usr/src/lib/libcurses/longname.c index 4f2feec658..6fc48f2cef 100644 --- a/usr/src/lib/libcurses/longname.c +++ b/usr/src/lib/libcurses/longname.c @@ -1,9 +1,18 @@ +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +static char sccsid[] = "@(#)longname.c 5.1 (Berkeley) %G%"; +#endif not lint + # define reg register /* * This routine fills in "def" with the long name of the terminal. * - * @(#)longname.c 1.2 (Berkeley) %G% */ char * longname(bp, def) diff --git a/usr/src/lib/libcurses/move.c b/usr/src/lib/libcurses/move.c index fec81646ec..86d71cc2cc 100644 --- a/usr/src/lib/libcurses/move.c +++ b/usr/src/lib/libcurses/move.c @@ -1,9 +1,18 @@ +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +static char sccsid[] = "@(#)move.c 5.1 (Berkeley) %G%"; +#endif not lint + # include "curses.ext" /* * This routine moves the cursor to the given point * - * @(#)move.c 1.1 (Berkeley) %G% */ wmove(win, y, x) reg WINDOW *win; diff --git a/usr/src/lib/libcurses/mvprintw.c b/usr/src/lib/libcurses/mvprintw.c index 877280f36f..8c66696d37 100644 --- a/usr/src/lib/libcurses/mvprintw.c +++ b/usr/src/lib/libcurses/mvprintw.c @@ -1,10 +1,19 @@ +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +static char sccsid[] = "@(#)mvprintw.c 5.1 (Berkeley) %G%"; +#endif not lint + # include "curses.ext" /* * implement the mvprintw commands. Due to the variable number of * arguments, they cannot be macros. Sigh.... * - * @(#)mvprintw.c 1.2 (Berkeley) %G% */ mvprintw(y, x, fmt, args) diff --git a/usr/src/lib/libcurses/mvscanw.c b/usr/src/lib/libcurses/mvscanw.c index 81810a35d5..df1140faf9 100644 --- a/usr/src/lib/libcurses/mvscanw.c +++ b/usr/src/lib/libcurses/mvscanw.c @@ -1,10 +1,19 @@ +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +static char sccsid[] = "@(#)mvscanw.c 5.1 (Berkeley) %G%"; +#endif not lint + # include "curses.ext" /* * implement the mvscanw commands. Due to the variable number of * arguments, they cannot be macros. Another sigh.... * - * @(#)mvscanw.c 1.3 (Berkeley) %G% */ mvscanw(y, x, fmt, args) diff --git a/usr/src/lib/libcurses/mvwin.c b/usr/src/lib/libcurses/mvwin.c index 19d36699a8..a6a9d2e1d6 100644 --- a/usr/src/lib/libcurses/mvwin.c +++ b/usr/src/lib/libcurses/mvwin.c @@ -1,9 +1,18 @@ +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +static char sccsid[] = "@(#)mvwin.c 5.1 (Berkeley) %G%"; +#endif not lint + # include "curses.ext" /* * relocate the starting position of a window * - * @(#)mvwin.c 1.2 (Berkeley) %G% */ mvwin(win, by, bx) diff --git a/usr/src/lib/libcurses/newwin.c b/usr/src/lib/libcurses/newwin.c index 9b63b270ce..a5e9073d0d 100644 --- a/usr/src/lib/libcurses/newwin.c +++ b/usr/src/lib/libcurses/newwin.c @@ -1,7 +1,16 @@ +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +static char sccsid[] = "@(#)newwin.c 5.1 (Berkeley) %G%"; +#endif not lint + /* * allocate space for and set up defaults for a new window * - * @(#)newwin.c 1.7 (Berkeley) %G% */ # include "curses.ext" diff --git a/usr/src/lib/libcurses/overlay.c b/usr/src/lib/libcurses/overlay.c index f4207f22ba..b59057aefe 100644 --- a/usr/src/lib/libcurses/overlay.c +++ b/usr/src/lib/libcurses/overlay.c @@ -1,3 +1,13 @@ +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +static char sccsid[] = "@(#)overlay.c 5.1 (Berkeley) %G%"; +#endif not lint + # include "curses.ext" # include @@ -7,7 +17,6 @@ /* * This routine writes win1 on win2 non-destructively. * - * @(#)overlay.c 1.6 (Berkeley) %G% */ overlay(win1, win2) reg WINDOW *win1, *win2; { diff --git a/usr/src/lib/libcurses/overwrite.c b/usr/src/lib/libcurses/overwrite.c index 90e4fb1c44..6ba5eeab22 100644 --- a/usr/src/lib/libcurses/overwrite.c +++ b/usr/src/lib/libcurses/overwrite.c @@ -1,3 +1,13 @@ +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +static char sccsid[] = "@(#)overwrite.c 5.1 (Berkeley) %G%"; +#endif not lint + # include "curses.ext" # include @@ -7,7 +17,6 @@ /* * This routine writes win1 on win2 destructively. * - * @(#)overwrite.c 1.4 (Berkeley) %G% */ overwrite(win1, win2) reg WINDOW *win1, *win2; { diff --git a/usr/src/lib/libcurses/printw.c b/usr/src/lib/libcurses/printw.c index 3eceee6a88..3b216e4c30 100644 --- a/usr/src/lib/libcurses/printw.c +++ b/usr/src/lib/libcurses/printw.c @@ -1,7 +1,16 @@ +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +static char sccsid[] = "@(#)printw.c 5.1 (Berkeley) %G%"; +#endif not lint + /* * printw and friends * - * @(#)printw.c 1.2 (Berkeley) %G% */ # include "curses.ext" diff --git a/usr/src/lib/libcurses/putchar.c b/usr/src/lib/libcurses/putchar.c index a1fabc2bf8..8acf5af0a3 100644 --- a/usr/src/lib/libcurses/putchar.c +++ b/usr/src/lib/libcurses/putchar.c @@ -1,8 +1,15 @@ -# include "curses.ext" - /* - * @(#)putchar.c 1.1 (Berkeley) %G% + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. */ + +#ifndef lint +static char sccsid[] = "@(#)putchar.c 5.1 (Berkeley) %G%"; +#endif not lint + +# include "curses.ext" + char _putchar(c) reg char c; { diff --git a/usr/src/lib/libcurses/scanw.c b/usr/src/lib/libcurses/scanw.c index 55a24ead87..184ad16b0e 100644 --- a/usr/src/lib/libcurses/scanw.c +++ b/usr/src/lib/libcurses/scanw.c @@ -1,7 +1,16 @@ +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +static char sccsid[] = "@(#)scanw.c 5.1 (Berkeley) %G%"; +#endif not lint + /* * scanw and friends * - * @(#)scanw.c 1.2 (Berkeley) %G% */ # include "curses.ext" diff --git a/usr/src/lib/libcurses/scroll.c b/usr/src/lib/libcurses/scroll.c index afc664525f..6320e5691b 100644 --- a/usr/src/lib/libcurses/scroll.c +++ b/usr/src/lib/libcurses/scroll.c @@ -1,9 +1,18 @@ +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +static char sccsid[] = "@(#)scroll.c 5.1 (Berkeley) %G%"; +#endif not lint + # include "curses.ext" /* * This routine scrolls the window up a line. * - * @(#)scroll.c 1.6 (Berkeley) %G% */ scroll(win) register WINDOW *win; diff --git a/usr/src/lib/libcurses/standout.c b/usr/src/lib/libcurses/standout.c index 24683c5173..0568e5dc92 100644 --- a/usr/src/lib/libcurses/standout.c +++ b/usr/src/lib/libcurses/standout.c @@ -1,7 +1,16 @@ +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +static char sccsid[] = "@(#)standout.c 5.1 (Berkeley) %G%"; +#endif not lint + /* * routines dealing with entering and exiting standout mode * - * @(#)standout.c 1.2 (Berkeley) %G% */ # include "curses.ext" diff --git a/usr/src/lib/libcurses/toucholap.c b/usr/src/lib/libcurses/toucholap.c index 3c87d1fb48..42318c7dae 100644 --- a/usr/src/lib/libcurses/toucholap.c +++ b/usr/src/lib/libcurses/toucholap.c @@ -1,3 +1,13 @@ +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +static char sccsid[] = "@(#)toucholap.c 5.1 (Berkeley) %G%"; +#endif not lint + # include "curses.ext" # define min(a,b) (a < b ? a : b) @@ -6,7 +16,6 @@ /* * Touch, on win2, the part that overlaps with win1. * - * @(#)toucholap.c 1.1 (Berkeley) %G% */ touchoverlap(win1, win2) reg WINDOW *win1, *win2; { diff --git a/usr/src/lib/libcurses/touchwin.c b/usr/src/lib/libcurses/touchwin.c index 9b675db2d6..81d24533e8 100644 --- a/usr/src/lib/libcurses/touchwin.c +++ b/usr/src/lib/libcurses/touchwin.c @@ -1,9 +1,18 @@ +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +static char sccsid[] = "@(#)touchwin.c 5.1 (Berkeley) %G%"; +#endif not lint + # include "curses.ext" /* * make it look like the whole window has been changed. * - * @(#)touchwin.c 1.3 (Berkeley) %G% */ touchwin(win) register WINDOW *win; -- 2.20.1