summaryrefslogtreecommitdiffstats
path: root/src/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/common.h b/src/common.h
index dd854cb..6c568f8 100644
--- a/src/common.h
+++ b/src/common.h
@@ -2,8 +2,8 @@
* common.h
* Misc functions used in idevicerestore
*
+ * Copyright (c) 2012-2019 Nikias Bassen. All Rights Reserved.
* Copyright (c) 2012 Martin Szulecki. All Rights Reserved.
- * Copyright (c) 2012 Nikias Bassen. All Rights Reserved.
* Copyright (c) 2010 Joshua Hill. All Rights Reserved.
*
* This library is free software; you can redistribute it and/or
@@ -144,6 +144,10 @@ void idevicerestore_progress(struct idevicerestore_client_t* client, int step, d
char* strsep(char** strp, const char* delim);
#endif
+#ifndef HAVE_REALPATH
+char* realpath(const char *filename, char *resolved_name);
+#endif
+
void get_user_input(char *buf, int maxlen, int secure);
#ifdef __cplusplus