Hi all,
attached patch fixes a manual define of errno,
which violates ISO C and conflicts with errno
on DragonFly. This is consistent with the rest of bash.

Joerg
$NetBSD$

--- builtins/psize.c.orig       2005-07-05 17:39:02.000000000 +0200
+++ builtins/psize.c
@@ -40,7 +40,9 @@
 #include "../command.h"
 #include "../general.h"
 #include "../sig.h"
+#ifndef errno
 extern int errno;
+#endif
 
 int nw;
 
_______________________________________________
Bug-bash mailing list
Bug-bash@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-bash

Reply via email to