mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 08:13:38 -05:00
8 lines
212 B
C
8 lines
212 B
C
struct deferment
|
|
{
|
|
struct deferment *next;
|
|
struct new_cpio_header header;
|
|
};
|
|
|
|
struct deferment *create_deferment P_((struct new_cpio_header *file_hdr));
|
|
void free_deferment P_((struct deferment *d));
|