summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/irecovery.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/irecovery.c b/tools/irecovery.c
index 1b1386a..3628b03 100644
--- a/tools/irecovery.c
+++ b/tools/irecovery.c
@@ -2,7 +2,7 @@
2 * irecovery.c 2 * irecovery.c
3 * Software frontend for iBoot/iBSS communication with iOS devices 3 * Software frontend for iBoot/iBSS communication with iOS devices
4 * 4 *
5 * Copyright (c) 2012-2013 Martin Szulecki <m.szulecki@libimobiledevice.org> 5 * Copyright (c) 2012-2015 Martin Szulecki <martin.szulecki@libimobiledevice.org>
6 * Copyright (c) 2010-2011 Chronic-Dev Team 6 * Copyright (c) 2010-2011 Chronic-Dev Team
7 * Copyright (c) 2010-2011 Joshua Hill 7 * Copyright (c) 2010-2011 Joshua Hill
8 * Copyright (c) 2008-2011 Nicolas Haunold 8 * Copyright (c) 2008-2011 Nicolas Haunold
@@ -18,6 +18,10 @@
18 * Lesser General Public License for more details. 18 * Lesser General Public License for more details.
19 */ 19 */
20 20
21#ifdef HAVE_CONFIG_H
22#include "config.h"
23#endif
24
21#include <stdio.h> 25#include <stdio.h>
22#include <stdlib.h> 26#include <stdlib.h>
23#include <unistd.h> 27#include <unistd.h>
@@ -330,6 +334,7 @@ static void print_usage(int argc, char **argv) {
330 printf(" -v\t\tenable verbose output, repeat for higher verbosity\n"); 334 printf(" -v\t\tenable verbose output, repeat for higher verbosity\n");
331 printf(" -h\t\tprints this usage information\n"); 335 printf(" -h\t\tprints this usage information\n");
332 printf("\n"); 336 printf("\n");
337 printf("Homepage: <" PACKAGE_URL ">\n");
333} 338}
334 339
335int main(int argc, char* argv[]) { 340int main(int argc, char* argv[]) {