[project @ 2001-07-24 06:01:21 by ken]
authorken <unknown>
Tue, 24 Jul 2001 06:01:21 +0000 (06:01 +0000)
committerken <unknown>
Tue, 24 Jul 2001 06:01:21 +0000 (06:01 +0000)
#include <string.h> to get proper prototypes

ghc/utils/prof/cgprof/matrix.c
ghc/utils/prof/cgprof/symbol.c

index 328ceeb..3ff0f60 100644 (file)
@@ -1,5 +1,5 @@
 /* ------------------------------------------------------------------------
- * $Id: matrix.c,v 1.1 2000/04/05 10:06:36 simonmar Exp $
+ * $Id: matrix.c,v 1.2 2001/07/24 06:01:21 ken Exp $
  *                                                                     
  *     Copyright (C) 1995-2000 University of Oxford
  *                                                                     
@@ -23,6 +23,7 @@
 
 #include <stdlib.h>
 #include <stdio.h>
+#include <string.h>
 #include "matrix.h"
 
 Matrix newMat(int rows,int cols, int elsize, void *zero) {
index 3800a69..3a47d21 100644 (file)
@@ -1,5 +1,5 @@
 /* ------------------------------------------------------------------------
- * $Id: symbol.c,v 1.1 2000/04/05 10:06:36 simonmar Exp $
+ * $Id: symbol.c,v 1.2 2001/07/24 06:01:21 ken Exp $
  *                                                                     
  *     Copyright (C) 1995-2000 University of Oxford
  *                                                                     
@@ -17,6 +17,7 @@
  *      form, be without fee and subject to these same conditions.
  * --------------------------------------------------------------------- */
 
+#include <string.h>
 #include "symbol.h"
 
 /* -----------------------------------------------------------------------------