Notes on portability, and on when #include <linux/blah> is appropriate.
[oweals/busybox.git] / archival / rpm2cpio.c
index 5314e5300e23c7b461646447d8f2809d5d7a6bcf..45a660113ce43832b4e2106d69fa82bb2bd5d249 100644 (file)
@@ -48,7 +48,7 @@ struct rpm_header {
        uint32_t size; /* Size of store (4 bytes) */
 };
 
-void skip_header(int rpm_fd)
+static void skip_header(int rpm_fd)
 {
        struct rpm_header header;
 
@@ -66,7 +66,7 @@ void skip_header(int rpm_fd)
 }
 
 /* No getopt required */
-extern int rpm2cpio_main(int argc, char **argv)
+int rpm2cpio_main(int argc, char **argv)
 {
        struct rpm_lead lead;
        int rpm_fd;