pkg_alternatives.h 709 B

1234567891011121314151617181920212223
  1. /* pkg_alternatives.c - the opkg package management system
  2. Copyright (C) 2017 Yousong Zhou
  3. This program is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU General Public License as
  5. published by the Free Software Foundation; either version 2, or (at
  6. your option) any later version.
  7. This program is distributed in the hope that it will be useful, but
  8. WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. General Public License for more details.
  11. */
  12. #ifndef OPKG_ALTERNATIVES_H
  13. #define OPKG_ALTERNATIVES_H
  14. #include "pkg.h"
  15. int pkg_alternatives_update(pkg_t * pkg);
  16. #endif