Mail: Always include posix/regex.h

PowerPC was special-cased to not include posix/regex.h but a local copy.
This caused a warning for undefining __STDC__ and a pointer signedness error.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38257 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Andreas Färber 2010-08-18 23:58:57 +00:00
parent eb7f7576c9
commit f7d8abc530

View File

@ -21,7 +21,7 @@
Boston, MA 02111-1307, USA. */
/* BeOS PPC has no regex in libroot */
#if !__POWERPC__
#if !(defined(__BEOS__) && __POWERPC__)
# include <posix/regex.h>
#else