diff options
| author | Dan Nicolaescu | 2010-10-03 08:19:34 -0700 |
|---|---|---|
| committer | Dan Nicolaescu | 2010-10-03 08:19:34 -0700 |
| commit | a3d5088daa2e78d9dc2d7eddc4ac9c56cfe11caa (patch) | |
| tree | fdb7783e90619a675f5bdcf2fc4471f5eacc8c01 /src/callproc.c | |
| parent | 372559454105e1691ca3507da3df5d8797b9baf8 (diff) | |
| download | emacs-a3d5088daa2e78d9dc2d7eddc4ac9c56cfe11caa.tar.gz emacs-a3d5088daa2e78d9dc2d7eddc4ac9c56cfe11caa.zip | |
Include <fcntl.h> unconditionally.
* src/termcap.c:
* src/sysdep.c:
* src/lread.c:
* src/keyboard.c:
* src/filelock.c:
* src/fileio.c:
* src/doc.c:
* src/callproc.c:
* src/alloc.c: Remove include guards for <fcntl.h>, process.c already
does it.
Diffstat (limited to 'src/callproc.c')
| -rw-r--r-- | src/callproc.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/callproc.c b/src/callproc.c index 346a913626d..ee587605f7a 100644 --- a/src/callproc.c +++ b/src/callproc.c | |||
| @@ -31,20 +31,16 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 31 | #endif | 31 | #endif |
| 32 | 32 | ||
| 33 | #include <sys/file.h> | 33 | #include <sys/file.h> |
| 34 | #ifdef HAVE_FCNTL_H | ||
| 35 | #include <fcntl.h> | 34 | #include <fcntl.h> |
| 36 | #endif | ||
| 37 | 35 | ||
| 38 | #ifdef WINDOWSNT | 36 | #ifdef WINDOWSNT |
| 39 | #define NOMINMAX | 37 | #define NOMINMAX |
| 40 | #include <windows.h> | 38 | #include <windows.h> |
| 41 | #include <fcntl.h> | ||
| 42 | #include "w32.h" | 39 | #include "w32.h" |
| 43 | #define _P_NOWAIT 1 /* from process.h */ | 40 | #define _P_NOWAIT 1 /* from process.h */ |
| 44 | #endif | 41 | #endif |
| 45 | 42 | ||
| 46 | #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */ | 43 | #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */ |
| 47 | #include <fcntl.h> | ||
| 48 | #include <sys/stat.h> | 44 | #include <sys/stat.h> |
| 49 | #include <sys/param.h> | 45 | #include <sys/param.h> |
| 50 | #endif /* MSDOS */ | 46 | #endif /* MSDOS */ |