OSDN Git Service

Include <config.h> from every .c file:
authorJim Meyering <jim@meyering.net>
Sun, 25 Feb 2007 17:44:30 +0000 (18:44 +0100)
committerJim Meyering <jim@meyering.net>
Sun, 25 Feb 2007 17:44:30 +0000 (18:44 +0100)
* libparted/unit.c, libparted/timer.c:
* libparted/cs/natmath.c, libparted/cs/constraint.c:
* libparted/tests/label.c, libparted/tests/common.c:
* libparted/fs/fat/count.c, libparted/fs/fat/bootsector.c:
* libparted/fs/fat/context.c, libparted/fs/fat/fatio.c:
* libparted/fs/fat/fat.c, libparted/fs/fat/clstdup.c:
* libparted/fs/fat/resize.c, libparted/fs/fat/traverse.c:
* libparted/fs/fat/table.c, libparted/fs/fat/calc.c:
* libparted/fs/amiga/amiga.c, libparted/labels/fdasd.c:
* libparted/labels/dvh.c, libparted/labels/efi_crc32.c:
* libparted/labels/vtoc.c, parted/command.c:
* libparted/tests/label.c, libparted/tests/common.c:

22 files changed:
libparted/cs/constraint.c
libparted/cs/natmath.c
libparted/fs/amiga/amiga.c
libparted/fs/fat/bootsector.c
libparted/fs/fat/calc.c
libparted/fs/fat/clstdup.c
libparted/fs/fat/context.c
libparted/fs/fat/count.c
libparted/fs/fat/fat.c
libparted/fs/fat/fatio.c
libparted/fs/fat/resize.c
libparted/fs/fat/table.c
libparted/fs/fat/traverse.c
libparted/labels/dvh.c
libparted/labels/efi_crc32.c
libparted/labels/fdasd.c
libparted/labels/vtoc.c
libparted/tests/common.c
libparted/tests/label.c
libparted/timer.c
libparted/unit.c
parted/command.c

index b21e9af..6ba941a 100644 (file)
@@ -44,6 +44,7 @@
  * @{
  */
 
+#include <config.h>
 #include <parted/parted.h>
 #include <parted/debug.h>
 
index a774d8f..f725cbb 100644 (file)
@@ -1,6 +1,6 @@
 /*
     libparted - a library for manipulating disk partitions
-    Copyright (C) 2000 Free Software Foundation, Inc.
+    Copyright (C) 2000, 2007 Free Software Foundation, Inc.
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -31,6 +31,7 @@
  * @{
  */
 
+#include <config.h>
 #include <stdlib.h>
 #include <parted/parted.h>
 #include <parted/debug.h>
index 8d06c88..9fa2025 100644 (file)
@@ -19,6 +19,7 @@
     Contributor:  Sven Luther <luther@debian.org>
 */
 
+#include <config.h>
 #include <parted/parted.h>
 #include <parted/debug.h>
 #include <parted/endian.h>
index 53ff50b..c8826c8 100644 (file)
@@ -17,6 +17,7 @@
     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 */
 
+#include <config.h>
 #include "fat.h"
 
 #include <stdio.h>
index 615ce0b..5f8a898 100644 (file)
@@ -17,6 +17,7 @@
     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 */
 
+#include <config.h>
 #include "fat.h" 
 
 #ifndef DISCOVER_ONLY
index a964a57..a4795b3 100644 (file)
@@ -17,6 +17,7 @@
     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 */
 
+#include <config.h>
 #include <string.h>
 
 #include "fat.h"
index 9cb3366..bf0df16 100644 (file)
@@ -1,6 +1,6 @@
 /*
     libparted
-    Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
+    Copyright (C) 1998, 1999, 2000, 2007 Free Software Foundation, Inc.
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -17,6 +17,7 @@
     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 */
 
+#include <config.h>
 #include <string.h>
 
 #include "fat.h"
index dba0edb..7390948 100644 (file)
@@ -25,6 +25,7 @@
 
 */
 
+#include <config.h>
 #include "fat.h"
 #include "traverse.h"
 
index b5d6d96..ebf023d 100644 (file)
@@ -17,6 +17,7 @@
     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 */
 
+#include <config.h>
 #include <string.h>
 #include <uuid/uuid.h>
 
index e88f85d..98006dc 100644 (file)
@@ -1,6 +1,6 @@
 /*
     libparted
-    Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
+    Copyright (C) 1998, 1999, 2000, 2007 Free Software Foundation, Inc.
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -17,6 +17,7 @@
     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 */
 
+#include <config.h>
 #include "fat.h"
 #include "fatio.h"
 
index 0facf3f..1fb1c8c 100644 (file)
@@ -17,6 +17,7 @@
     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 */
 
+#include <config.h>
 #include "fat.h"
 #include "traverse.h"
 #include "count.h"
index d67e42c..3db6127 100644 (file)
@@ -17,6 +17,7 @@
     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 */
 
+#include <config.h>
 #include <parted/endian.h>
 #include "fat.h"
 
index aadb83d..da63964 100644 (file)
@@ -25,6 +25,7 @@
 
 */
 
+#include <config.h>
 #include "fat.h"
 #include "traverse.h"
 
index 4f6cd21..77122d3 100644 (file)
@@ -17,6 +17,7 @@
     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 */
 
+#include <config.h>
 #include <parted/parted.h>
 #include <parted/debug.h>
 #include <parted/endian.h>
index a44f262..01cdff7 100644 (file)
@@ -48,6 +48,7 @@
   /*                                                                        */
   /*  --------------------------------------------------------------------  */
 
+#include <config.h>
 #include <stdint.h>
 
 static uint32_t crc32_tab[] = {
index acdd6a0..198bce2 100644 (file)
@@ -16,6 +16,7 @@
  *           
  */
 
+#include <config.h>
 #include <parted/vtoc.h>
 #include <parted/fdasd.h>
 
index ad25bbe..028f8b0 100644 (file)
@@ -1,3 +1,4 @@
+#include <config.h>
 #include <parted/vtoc.h>
 
 #ifdef DEBUG_DASD
index 9a4aeb5..1321ee5 100644 (file)
@@ -1,3 +1,4 @@
+#include <config.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <sys/types.h>
index 4b4fdb8..c300088 100644 (file)
@@ -1,3 +1,4 @@
+#include <config.h>
 #include <unistd.h>
 
 #include <check.h>
index ac403ba..e315273 100644 (file)
@@ -1,6 +1,6 @@
 /*
     libparted - a library for manipulating disk partitions
-    Copyright (C) 2001 Free Software Foundation, Inc.
+    Copyright (C) 2001, 2007 Free Software Foundation, Inc.
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -43,6 +43,7 @@
  */
 
 
+#include <config.h>
 #include <parted/parted.h>
 #include <parted/debug.h>
 
index 13641a6..930276a 100644 (file)
@@ -50,6 +50,7 @@
 
 
 
+#include <config.h>
 #include <parted/parted.h>
 #include <parted/debug.h>
 
index 2f78e5c..c3c897f 100644 (file)
@@ -1,6 +1,6 @@
 /*
     parted - a frontend to libparted
-    Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+    Copyright (C) 1999, 2000, 2007 Free Software Foundation, Inc.
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -17,6 +17,7 @@
     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 */
 
+#include <config.h>
 #include "command.h"
 #include "ui.h"