mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-04 10:18:09 -04:00
15 lines
346 B
C++
15 lines
346 B
C++
$NetBSD: patch-src_param.cpp,v 1.1 2011/03/23 09:19:39 obache Exp $
|
|
|
|
* require <cstring> header for strlen(3) and strncmp(3).
|
|
|
|
--- src/param.cpp.orig 2005-09-05 14:50:59.000000000 +0000
|
|
+++ src/param.cpp
|
|
@@ -24,6 +24,7 @@
|
|
#include <fstream>
|
|
#include <strstream>
|
|
#include <cstdio>
|
|
+#include <cstring>
|
|
#include "param.h"
|
|
#include "common.h"
|
|
|