summaryrefslogtreecommitdiff
path: root/src/repo.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/repo.h')
-rw-r--r--src/repo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/repo.h b/src/repo.h
index b503431..1f270d7 100644
--- a/src/repo.h
+++ b/src/repo.h
@@ -24,7 +24,7 @@
extern "C" {
#endif
-typedef struct s_Repo {
+struct s_Repo {
const char *name; /* name pointer */
Id repoid; /* our id */
void *appdata; /* application private pointer */
@@ -56,7 +56,7 @@ typedef struct s_Repo {
int lastmarker;
Offset lastmarkerpos;
#endif /* LIBSOLV_INTERNAL */
-} Repo;
+};
extern Repo *repo_create(Pool *pool, const char *name);
extern void repo_free(Repo *repo, int reuseids);