lib: Add missing config.h #include to crc32_file.c.
authorLei Zhang <thestig@google.com>
Fri, 17 Jan 2014 11:20:45 +0000 (03:20 -0800)
committerMark Wielaard <mjw@redhat.com>
Fri, 17 Jan 2014 12:35:47 +0000 (13:35 +0100)
Without config.h, there is no possibility of large file support.

Signed-off-by: Mark Wielaard <mjw@redhat.com>
lib/ChangeLog
lib/crc32_file.c

index 9b8899e..4415213 100644 (file)
@@ -1,3 +1,7 @@
+2014-01-17  Lei Zhang  <thestig@google.com>
+
+       * crc32_file.c: Include config.h.
+
 2013-12-12  Josh Stone  <jistone@redhat.com>
 
        * dynamicsizehash.c (lookup): Add a shortcut around division.
index 9a168f6..c0b18e9 100644 (file)
    the GNU Lesser General Public License along with this program.  If
    not, see <http://www.gnu.org/licenses/>.  */
 
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
 #include "system.h"
 #include <errno.h>
 #include <unistd.h>