diff options
author | Nikias Bassen | 2021-06-11 02:16:06 +0200 |
---|---|---|
committer | Nikias Bassen | 2021-06-11 02:16:06 +0200 |
commit | de66c61fa0df1cbf9072f33c7dd04986b80b4e44 (patch) | |
tree | 518b09dc9ca3f88053511355ec6df37212f8870a | |
parent | ef9d674a4812cf1e39b140a9937c0d07886c4275 (diff) | |
download | libimobiledevice-glue-de66c61fa0df1cbf9072f33c7dd04986b80b4e44.tar.gz libimobiledevice-glue-de66c61fa0df1cbf9072f33c7dd04986b80b4e44.tar.bz2 |
utils: Suppress compiler warning
-rw-r--r-- | src/utils.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/utils.c b/src/utils.c index 2c70b80..f1c1420 100644 --- a/src/utils.c +++ b/src/utils.c @@ -39,6 +39,9 @@ #include "libimobiledevice-glue/utils.h" #ifndef HAVE_STPCPY +#undef stpcpy +char *stpcpy(char *s1, const char *s2); + /** * Copy characters from one string into another * |