Browse Source

Make the binding cfree() -> free() weak if possible

OPENBSD_2_0
tholo 28 years ago
parent
commit
a15c5044f5
1 changed files with 12 additions and 5 deletions
  1. +12
    -5
      src/lib/libc/stdlib/malloc.c

+ 12
- 5
src/lib/libc/stdlib/malloc.c View File

@ -8,7 +8,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
static char rcsid[] = "$OpenBSD: malloc.c,v 1.6 1996/08/20 17:30:49 downsj Exp $";
static char rcsid[] = "$OpenBSD: malloc.c,v 1.7 1996/08/20 17:56:52 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
/*
@ -1260,10 +1260,17 @@ free(ptr)
}
#ifdef CFREE_STUB
#ifdef __indr_reference
__indr_reference(free, cfree);
#else /* __indr_reference */
void
cfree(ptr)
void *ptr;
cfree(p)
void *p;
{
free(ptr);
free(p);
}
#endif
#endif /* not __indr_reference */
#endif /* CFREE_STUB */

Loading…
Cancel
Save