summaryrefslogtreecommitdiff
path: root/src/systems.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/systems.h')
-rw-r--r--src/systems.h18
1 files changed, 5 insertions, 13 deletions
diff --git a/src/systems.h b/src/systems.h
index c83cd9c..3ebfe21 100644
--- a/src/systems.h
+++ b/src/systems.h
@@ -1,7 +1,7 @@
/* systems.h - Most of the system dependant code and defines are here. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 2007, 2011 Free Software Foundation,
+ Copyright (C) 1990, 1991, 1993, 2007, 2011, 2013 Free Software Foundation,
Inc.
GDBM is free software; you can redistribute it and/or modify
@@ -18,28 +18,20 @@
along with GDBM. If not, see <http://www.gnu.org/licenses/>. */
/* Include all system headers first. */
-#if HAVE_SYS_TYPES_H
-# include <sys/types.h>
-#endif
+#include <sys/types.h>
#include <stdio.h>
#if HAVE_SYS_FILE_H
# include <sys/file.h>
#endif
#include <sys/stat.h>
-#if HAVE_STDLIB_H
-# include <stdlib.h>
-#endif
+#include <stdlib.h>
#if HAVE_STRING_H
# include <string.h>
#else
# include <strings.h>
#endif
-#if HAVE_UNISTD_H
-# include <unistd.h>
-#endif
-#if HAVE_FCNTL_H
-# include <fcntl.h>
-#endif
+#include <unistd.h>
+#include <fcntl.h>
#include <errno.h>
#ifndef SEEK_SET