blob: 4062a9b1daad3d71813b60fa84c91bbdcee69ada (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
--- utils.h.orig 1999-01-01 23:57:51 UTC
+++ utils.h
@@ -63,6 +63,9 @@ void *tmalloc (size_t size);
* allocated.
*/
+#if defined(__FreeBSD__)
+#include <osreldate.h>
+#if __FreeBSD_version <= 800057 && __FreeBSD_version > 800000 || __FreeBSD_version <= 701100
char *strndup (char *src, int num);
/*
* Like strdup(), but limits the string length to at most
@@ -71,6 +74,8 @@ char *strndup (char *src, int num);
* Always allocates <num>+1 bytes, even if less space would
* be sufficient to store <src>.
*/
+#endif
+#endif
char *justify (char *str);
/*
|