diff --git a/include/sk-queue.h b/include/sk-queue.h index df5297b3c..aa0c48d47 100644 --- a/include/sk-queue.h +++ b/include/sk-queue.h @@ -6,12 +6,6 @@ #include "crtools.h" #include "image.h" -struct sk_packet { - struct list_head list; - struct sk_packet_entry *entry; - off_t img_off; -}; - extern int read_sk_queues(void); extern int dump_sk_queue(int sock_fd, int sock_id); extern void show_sk_queues(int fd, struct cr_options *o); diff --git a/sk-queue.c b/sk-queue.c index 495e4f7fc..4e6a83e7e 100644 --- a/sk-queue.c +++ b/sk-queue.c @@ -19,6 +19,12 @@ #include "sk-queue.h" +struct sk_packet { + struct list_head list; + struct sk_packet_entry *entry; + off_t img_off; +}; + static LIST_HEAD(packets_list); int read_sk_queues(void)