On Thu, Aug 04 2022, Victoria Dye via GitGitGadget wrote: > From: Victoria Dye <vdye@xxxxxxxxxx> > [...] > diff --git a/diagnose.h b/diagnose.h > new file mode 100644 > index 00000000000..e86e8a3c962 > --- /dev/null > +++ b/diagnose.h > @@ -0,0 +1,9 @@ > +#ifndef DIAGNOSE_H > +#define DIAGNOSE_H > + > +#include "cache.h" We don't need cache.h here, just ... > +#include "strbuf.h" ...this, also a matter of preference, but we could also just skip the includes here and use a forward decl (as is common in other headers): struct strbuf; > + > +int create_diagnostics_archive(struct strbuf *zip_path); > + > +#endif /* DIAGNOSE_H */