aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/window/cmd6.c
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2000-10-26 10:00:52 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2000-10-26 10:00:52 +0000
commite218b63212e0698ca73953f276748e8074412fad (patch)
tree625298f1a9d258f3648b84c8f189025b46af5c42 /usr.bin/window/cmd6.c
parentcc66bbda3cc8983c8b826e68207af4418ada3993 (diff)
Having a local `string.h' is just asking for trouble. As is having a
`struct string'. Rename the struct and effectively rename the header to `mystring.h'
Notes
Notes: svn path=/head/; revision=67606
Diffstat (limited to 'usr.bin/window/cmd6.c')
-rw-r--r--usr.bin/window/cmd6.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/window/cmd6.c b/usr.bin/window/cmd6.c
index fc8548545fad..ac3d472c98d1 100644
--- a/usr.bin/window/cmd6.c
+++ b/usr.bin/window/cmd6.c
@@ -36,10 +36,11 @@
#ifndef lint
static char sccsid[] = "@(#)cmd6.c 8.1 (Berkeley) 6/6/93";
+static char rcsid[] = "@(#)$FreeBSD$";
#endif /* not lint */
#include "defs.h"
-#include "string.h"
+#include "mystring.h"
#include "char.h"
/*
@@ -87,7 +88,7 @@ c_debug()
debug_str()
{
register struct ww *w;
- struct string *s;
+ struct mystring *s;
if ((w = openiwin(wwnrow - 3, "Allocated Strings")) == 0) {
error("Can't open string window: %s.", wwerror());