PR: ports/132014 Submitted by: Florian Smeets <flo at kasimir.com> Approved by: maintainer timeout (1 month)
21 lines
579 B
C
21 lines
579 B
C
--- utils/utils.h.orig 2009-02-23 16:51:20.000000000 +0100
|
|
+++ utils/utils.h 2009-02-23 16:54:21.000000000 +0100
|
|
@@ -42,6 +42,9 @@
|
|
* allocated.
|
|
*/
|
|
|
|
+#if defined(__FreeBSD__)
|
|
+#include <osreldate.h>
|
|
+#if __FreeBSD_version <= 800057 && __FreeBSD_version > 800000 || __FreeBSD_version <= 701100
|
|
char *strndup (const char *src, int num);
|
|
/*
|
|
* Like strdup(), but limits the string length to at most
|
|
@@ -50,6 +53,8 @@
|
|
* Always allocates <num>+1 bytes, even if less space would
|
|
* be sufficient to store <src>.
|
|
*/
|
|
+#endif
|
|
+#endif
|
|
|
|
char *justify (char *str);
|
|
/*
|