comparison src/fileio.c @ 110734:72f46bad930c

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.
author Dan Nicolaescu <dann@ics.uci.edu>
date Sun, 03 Oct 2010 08:19:34 -0700
parents 55c8c3ca3d48
children 9efd09876018
comparison
equal deleted inserted replaced
110733:94fbe30e0f7d 110734:72f46bad930c
18 You should have received a copy of the GNU General Public License 18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ 19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 20
21 #include <config.h> 21 #include <config.h>
22 #include <limits.h> 22 #include <limits.h>
23
24 #ifdef HAVE_FCNTL_H
25 #include <fcntl.h> 23 #include <fcntl.h>
26 #endif
27
28 #include <stdio.h> 24 #include <stdio.h>
29 #include <sys/types.h> 25 #include <sys/types.h>
30 #include <sys/stat.h> 26 #include <sys/stat.h>
31 #include <setjmp.h> 27 #include <setjmp.h>
32 28