summaryrefslogtreecommitdiff
path: root/src/include/posix.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/posix.h')
-rw-r--r--src/include/posix.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/include/posix.h b/src/include/posix.h
index 80f59cad..9a03ecdb 100644
--- a/src/include/posix.h
+++ b/src/include/posix.h
@@ -1,5 +1,5 @@
// -*- C++ -*-
-/* Copyright (C) 1992, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1992, 2000, 2001 Free Software Foundation, Inc.
Written by James Clark (jjc@jclark.com)
This file is part of groff.
@@ -46,6 +46,10 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#define S_IWUSR 0200
#endif
+#ifndef S_IXUSR
+#define S_IXUSR 0100
+#endif
+
#ifndef S_ISREG
#define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
#endif