47671d288984d20a804c8202949ef519c13562d0
[project/opkg-lede.git] / src / opkg-frontend.c
1 /* opkg-frontend.c - the itsy package management system
2
3 Florina Boor
4
5 Copyright (C) 2003 kernel concepts
6
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License as
9 published by the Free Software Foundation; either version 2, or (at
10 your option) any later version.
11
12 This program is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
16
17 opkg command line frontend using libopkg
18
19 */
20
21 #include "libopkg.h"
22
23 /* This is really small, eh? ;-) */
24
25 int main(int argc, char *argv[])
26 {
27 return opkg_op(argc,argv);
28 }