last few day's work
[unix-history] / usr / src / usr.bin / window / wwmisc.c
index 3b33ca9..8454f1e 100644 (file)
@@ -1,40 +1,9 @@
 #ifndef lint
 #ifndef lint
-static char *sccsid = "@(#)wwmisc.c    2.1 83/07/30";
+static char *sccsid = "@(#)wwmisc.c    3.1 83/08/11";
 #endif
 
 #include "ww.h"
 
 #endif
 
 #include "ww.h"
 
-struct ww *wwhead = 0;
-struct ww *curwin = 0;
-
-wwsetcurwin(wp)
-register struct ww *wp;
-{
-       curwin = wp;
-       Wfront(wp->ww_win);
-}
-
-wwhaschildren()
-{
-       register struct ww *wp;
-
-       for (wp = wwhead; wp; wp = wp->ww_next)
-               if (wp->ww_state == WW_HASPROC)
-                       return 1;
-       return 0;
-}
-
-struct ww *
-wwfind(id)
-register id;
-{
-       register struct ww *w;
-
-       for (w = wwhead; w && w->ww_ident != id; w = w->ww_next)
-               ;
-       return w;
-}
-
 char *
 unctrl(c)
 register char c;
 char *
 unctrl(c)
 register char c;