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:
parent
405c691229
commit
8c9a9ab5ae
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue