opkg: 's/itsy/opkg/'
[oweals/opkg-lede.git] / libopkg / user.c
index 557f7ce890577877f96d1887ab8a50f3d7a112a0..af133bac8763f0add2fb0eb4bb3e1ae201863b98 100644 (file)
@@ -1,4 +1,4 @@
-/* user.c - the itsy package management system
+/* user.c - the opkg package management system
 
    Jamey Hicks
 
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    General Public License for more details.
 */
-
+#include <stdlib.h>
 #include <stdio.h>
 #include <stdarg.h>
+#include <string.h>
 #include "file_util.h"
 #include "str_util.h"
-#include "libopkg.h"
-
+#include "user.h"
 
 static char *question = NULL;
 static int question_len = 255;
 
+opkg_response_callback opkg_cb_response = NULL;
+
 char *get_user_response(const char *format, ...)
 {
      int len = question_len;