aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2003-06-02 18:45:00 +0000
committerDave Love2003-06-02 18:45:00 +0000
commit54a2cb1213b3c87a79c15814bf4273b1a439a0ee (patch)
treeeebbb6bec35667d590c1bc04d5b3d90490d70f70 /src
parentf0d6207551d0776e05d975031d000b81530bd921 (diff)
downloademacs-54a2cb1213b3c87a79c15814bf4273b1a439a0ee.tar.gz
emacs-54a2cb1213b3c87a79c15814bf4273b1a439a0ee.zip
Use HAVE_FCNTL_H, not USG5.
Diffstat (limited to 'src')
-rw-r--r--src/doc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc.c b/src/doc.c
index 2d75ffe9753..c7b6d874013 100644
--- a/src/doc.c
+++ b/src/doc.c
@@ -24,7 +24,7 @@ Boston, MA 02111-1307, USA. */
24#include <sys/types.h> 24#include <sys/types.h>
25#include <sys/file.h> /* Must be after sys/types.h for USG and BSD4_1*/ 25#include <sys/file.h> /* Must be after sys/types.h for USG and BSD4_1*/
26 26
27#ifdef USG5 27#ifdef HAVE_FCNTL_H
28#include <fcntl.h> 28#include <fcntl.h>
29#endif 29#endif
30 30