Include "string.h" not "strings.h" (a typo anyway) to fix the build under

DragonFly. Patch supplied by Peter Avalos in PR pkg/44373.
This commit is contained in:
tron 2011-01-12 08:47:52 +00:00
parent 405c691229
commit 8c9a9ab5ae

View file

@ -1,4 +1,4 @@
/* $NetBSD: package-list.c,v 1.1 2011/01/12 00:26:33 tron Exp $ */
/* $NetBSD: package-list.c,v 1.2 2011/01/12 08:47:52 tron Exp $ */
/*-
* Copyright (c) 2001-2011 The NetBSD Foundation, Inc.
@ -32,7 +32,7 @@
#include "package-list.h"
#include <stdlib.h>
#include <strings.h>
#include <string.h>
PListEntry *
PListInsert(PListEntry **Tree,char *Name)