diff options
author | Aaron Griffin <aaron@archlinux.org> | 2007-02-18 22:07:11 +0000 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2007-02-18 22:07:11 +0000 |
commit | 119b3ab0437d83a483d46e43ce3e330b49f05096 (patch) | |
tree | fd64a9f9bd10d58e3a9dbfed1605c698da51cffe /lib/libalpm/trans.h | |
parent | 7b4e2cd25d20e331b66c5163e0d43fe7acd2a420 (diff) | |
download | pacman-119b3ab0437d83a483d46e43ce3e330b49f05096.tar.xz |
Moved the update_depends function to trans.c, as it depends on a transaction
object
Diffstat (limited to 'lib/libalpm/trans.h')
-rw-r--r-- | lib/libalpm/trans.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libalpm/trans.h b/lib/libalpm/trans.h index 8d5c6362..f0fe1e57 100644 --- a/lib/libalpm/trans.h +++ b/lib/libalpm/trans.h @@ -84,6 +84,7 @@ int _alpm_trans_sysupgrade(pmtrans_t *trans); int _alpm_trans_addtarget(pmtrans_t *trans, char *target); int _alpm_trans_prepare(pmtrans_t *trans, alpm_list_t **data); int _alpm_trans_commit(pmtrans_t *trans, alpm_list_t **data); +int _alpm_trans_update_depends(pmtrans_t *trans, pmpkg_t *pkg); #endif /* _ALPM_TRANS_H */ |