Patch to eliminate a scary but harmless warning caused by recent
changes to the FreeBSD dynamic linker.

--- src/unexfreebsd.c.orig	Tue Dec 17 19:48:50 1996
+++ src/unexfreebsd.c	Thu Dec 11 21:00:54 1997
@@ -680,13 +680,7 @@
 {
       unsigned long current_sbrk = (unsigned long) sbrk (0);
 
-      if (sbrk_of_0_at_unexec < current_sbrk)
-	{
-	  if (sbrk_of_0_at_unexec != 0)
-	    fprintf (stderr, "Absurd new brk addr = 0x%x (current = 0x%x)\n", 
-		     sbrk_of_0_at_unexec, current_sbrk);
-	}
-      else
+      if (sbrk_of_0_at_unexec > current_sbrk)
         {
           errno = 0;
           if (brk ((caddr_t) sbrk_of_0_at_unexec))
