From bb2ee72bdfdb7be9b587f494873a489a2bee1466 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 9 May 1994 23:08:26 +0000 Subject: *** empty log message *** --- lwlib/lwlib-utils.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'lwlib/lwlib-utils.c') diff --git a/lwlib/lwlib-utils.c b/lwlib/lwlib-utils.c index c6899b57af7..c966e9645e5 100644 --- a/lwlib/lwlib-utils.c +++ b/lwlib/lwlib-utils.c @@ -17,11 +17,6 @@ You should have received a copy of the GNU General Public License along with GNU Emacs; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include -#include -#include -#include - #include #include #include @@ -68,7 +63,7 @@ XtApplyToWidgets (w, proc, arg) int nkids = cw->composite.num_children; Widget *kids = (Widget *) malloc (sizeof (Widget) * nkids); int i; - memcpy (kids, cw->composite.children, sizeof (Widget) * nkids); + bcopy (cw->composite.children, kids, sizeof (Widget) * nkids); for (i = 0; i < nkids; i++) /* This prevent us from using gadgets, why is it here? */ /* if (XtIsWidget (kids [i])) */ -- cgit v1.2.1