mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
30d6b7b2da
on the Alpha.
37 lines
727 B
Plaintext
37 lines
727 B
Plaintext
*** src/hsearch.c.orig Thu Jan 29 03:06:18 1998
|
|
--- src/hsearch.c Sun Sep 19 09:42:04 1999
|
|
***************
|
|
*** 19,25 ****
|
|
Cambridge, MA 02139, USA. */
|
|
|
|
#include "ansidecl.h"
|
|
! #include <malloc.h>
|
|
#include <string.h>
|
|
|
|
#include "search.h"
|
|
--- 19,25 ----
|
|
Cambridge, MA 02139, USA. */
|
|
|
|
#include "ansidecl.h"
|
|
! #include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "search.h"
|
|
***************
|
|
*** 76,82 ****
|
|
*/
|
|
|
|
int
|
|
! DEFUN(hcreate, (nel), unsigned nel)
|
|
{
|
|
/* There is still a table active. Return with error. */
|
|
if (htable != NULL)
|
|
--- 76,82 ----
|
|
*/
|
|
|
|
int
|
|
! DEFUN(hcreate, (nel), size_t nel)
|
|
{
|
|
/* There is still a table active. Return with error. */
|
|
if (htable != NULL)
|