From: <il...@us...> - 2003-11-25 07:47:42
|
Update of /cvsroot/meshdb/src/vpf/gdps In directory sc8-pr-cvs1:/tmp/cvs-serv2127 Modified Files: draw.c hash.c object.c operator.c Log Message: Include string.h for mem*()/str*(). Index: draw.c =================================================================== RCS file: /cvsroot/meshdb/src/vpf/gdps/draw.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- draw.c 22 Oct 2003 06:26:58 -0000 1.5 +++ draw.c 25 Nov 2003 07:10:34 -0000 1.6 @@ -9,6 +9,7 @@ #include <math.h> #include <gd.h> #include <stdlib.h> +#include <string.h> #include "error.h" #include "vector.h" #include "object.h" Index: hash.c =================================================================== RCS file: /cvsroot/meshdb/src/vpf/gdps/hash.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- hash.c 17 Sep 2002 13:48:09 -0000 1.1 +++ hash.c 25 Nov 2003 07:10:34 -0000 1.2 @@ -3,6 +3,7 @@ #include <stdio.h> #include <stdlib.h> +#include <string.h> #include "error.h" #include "vector.h" #include "hash.h" Index: object.c =================================================================== RCS file: /cvsroot/meshdb/src/vpf/gdps/object.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- object.c 17 Sep 2002 13:48:09 -0000 1.1 +++ object.c 25 Nov 2003 07:10:34 -0000 1.2 @@ -8,6 +8,7 @@ #include <stdio.h> #include <stdlib.h> +#include <string.h> #include <math.h> #include "error.h" #include "vector.h" Index: operator.c =================================================================== RCS file: /cvsroot/meshdb/src/vpf/gdps/operator.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- operator.c 22 Oct 2003 06:26:58 -0000 1.4 +++ operator.c 25 Nov 2003 07:10:34 -0000 1.5 @@ -7,6 +7,7 @@ #include <stdio.h> #include <stdlib.h> +#include <string.h> #include <math.h> #include <gd.h> #include "error.h" |