diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-11-26 22:49:10 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-11-26 22:49:10 +0000 |
commit | ae8a234af8879e97f27622bf3af2202b850b82c3 (patch) | |
tree | ae8b4c98914ed60402c7db26b33a4899bfc5c4e4 /usr.bin/vi/cl | |
parent | 3eb6c5a66b1af6fba5c9f450d1e602f3ea85256b (diff) |
o Update README files etc. from nvi-1.79 so they have the correct info
o make port.h empty since we there is nothing we lack
o include <sys/param.h>, not <sys/types.h> in files that use MIN/MAX macros
o add perl api support since we have libperl (off by default)
Diffstat (limited to 'usr.bin/vi/cl')
-rw-r--r-- | usr.bin/vi/cl/cl_main.c | 2 | ||||
-rw-r--r-- | usr.bin/vi/cl/cl_read.c | 2 | ||||
-rw-r--r-- | usr.bin/vi/cl/cl_screen.c | 2 | ||||
-rw-r--r-- | usr.bin/vi/cl/cl_term.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/vi/cl/cl_main.c b/usr.bin/vi/cl/cl_main.c index 43381d1fb7f..2889f709cbb 100644 --- a/usr.bin/vi/cl/cl_main.c +++ b/usr.bin/vi/cl/cl_main.c @@ -17,9 +17,9 @@ static const char sccsid[] = "@(#)cl_main.c 10.36 (Berkeley) 10/14/96"; #include <sys/queue.h> #include <bitstring.h> +#include <curses.h> #include <errno.h> #include <fcntl.h> -#include <curses.h> #include <signal.h> #include <stdio.h> #include <stdlib.h> diff --git a/usr.bin/vi/cl/cl_read.c b/usr.bin/vi/cl/cl_read.c index d71e03f8c5e..8a95a77b243 100644 --- a/usr.bin/vi/cl/cl_read.c +++ b/usr.bin/vi/cl/cl_read.c @@ -21,9 +21,9 @@ static const char sccsid[] = "@(#)cl_read.c 10.15 (Berkeley) 9/24/96"; #include <sys/time.h> #include <bitstring.h> +#include <curses.h> #include <errno.h> #include <fcntl.h> -#include <curses.h> #include <signal.h> #include <stdio.h> #include <stdlib.h> diff --git a/usr.bin/vi/cl/cl_screen.c b/usr.bin/vi/cl/cl_screen.c index 23e74be812c..2ce58e80cc7 100644 --- a/usr.bin/vi/cl/cl_screen.c +++ b/usr.bin/vi/cl/cl_screen.c @@ -17,8 +17,8 @@ static const char sccsid[] = "@(#)cl_screen.c 10.49 (Berkeley) 9/24/96"; #include <sys/queue.h> #include <bitstring.h> -#include <errno.h> #include <curses.h> +#include <errno.h> #include <signal.h> #include <stdio.h> #include <stdlib.h> diff --git a/usr.bin/vi/cl/cl_term.c b/usr.bin/vi/cl/cl_term.c index 7d7661f870f..6fa2cce613e 100644 --- a/usr.bin/vi/cl/cl_term.c +++ b/usr.bin/vi/cl/cl_term.c @@ -19,9 +19,9 @@ static const char sccsid[] = "@(#)cl_term.c 10.22 (Berkeley) 9/15/96"; #include <sys/stat.h> #include <bitstring.h> +#include <curses.h> #include <errno.h> #include <limits.h> -#include <curses.h> #include <signal.h> #include <stdio.h> #include <stdlib.h> |