File implicit_def.patch of Package ssldump
--- common/lib/r_assoc.c
+++ common/lib/r_assoc.c 2005/07/06 09:09:30
@@ -56,6 +56,7 @@
static char *RCSSTRING="$Id: r_assoc.c,v 1.4 2001/12/24 06:06:26 ekr Exp $";
+#include <string.h>
#include <r_common.h>
#include "r_assoc.h"
@@ -298,7 +299,7 @@
r_assoc *new;
if(!(new=(r_assoc *)calloc(sizeof(r_assoc),1)))
- ABORT(r);
+ ABORT(R_NO_MEMORY);
new->size=old->size;
new->bits=old->bits;
--- common/lib/r_bitfield.c
+++ common/lib/r_bitfield.c 2005/07/06 08:59:08
@@ -10,6 +10,7 @@
static char *RCSSTRING="$Id: r_bitfield.c,v 1.3 2001/12/24 06:06:26 ekr Exp $";
+#include <string.h>
#include <r_common.h>
#include "r_bitfield.h"
--- common/lib/r_data.c
+++ common/lib/r_data.c 2005/07/06 09:00:13
@@ -46,6 +46,7 @@
static char *RCSSTRING="$Id: r_data.c,v 1.3 2001/07/20 23:33:15 ekr Exp $";
+#include <string.h>
#include <r_common.h>
#include <r_data.h>