From f444e3eb68133e6041e877467930740c12890a7d Mon Sep 17 00:00:00 2001 From: "Alexander G.M. Smith" Date: Sun, 30 Oct 2005 21:28:22 +0000 Subject: [PATCH] Doesn't compile under BeOS R5 due to O_WRONLY being undefined, so include the appropriate header. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@14582 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/bin/rmattr.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/rmattr.cpp b/src/bin/rmattr.cpp index 3053265a77..4603a16911 100644 --- a/src/bin/rmattr.cpp +++ b/src/bin/rmattr.cpp @@ -14,6 +14,7 @@ #include #include +#include // For O_WRONLY in BeOS R5 headers. #include int main(int32 argc, const char **argv)