diff options
author | bde <bde@FreeBSD.org> | 1997-07-03 03:28:27 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-07-03 03:28:27 +0000 |
commit | e2f0a0f35c8c3ecbae359c67f0d5b3aac5ce43dc (patch) | |
tree | cfd1bb56bef2f8964dc85e334b5f5531a8997455 /lib/libcurses/addbytes.c | |
parent | 4e789e88d887b2015822fd4ddb14016866f05f97 (diff) | |
download | FreeBSD-src-e2f0a0f35c8c3ecbae359c67f0d5b3aac5ce43dc.zip FreeBSD-src-e2f0a0f35c8c3ecbae359c67f0d5b3aac5ce43dc.tar.gz |
Import Lite2's src/lib, except for non-i386 machine-dependent directories,
libc/db, libc/gen/crypt.* and libtelnet. All affected files except 3
unimportant ones have already left the vendor branch.
Diffstat (limited to 'lib/libcurses/addbytes.c')
-rw-r--r-- | lib/libcurses/addbytes.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcurses/addbytes.c b/lib/libcurses/addbytes.c index 5ec3a06..6dd8bf9 100644 --- a/lib/libcurses/addbytes.c +++ b/lib/libcurses/addbytes.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 1987, 1993 + * Copyright (c) 1987, 1993, 1994 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -32,10 +32,10 @@ */ #ifndef lint -static char sccsid[] = "@(#)addbytes.c 8.3 (Berkeley) 3/19/94"; +static char sccsid[] = "@(#)addbytes.c 8.4 (Berkeley) 5/4/94"; #endif /* not lint */ -#include <curses.h> +#include "curses.h" #define SYNCH_IN {y = win->cury; x = win->curx;} #define SYNCH_OUT {win->cury = y; win->curx = x;} |