aboutsummaryrefslogtreecommitdiffstats
path: root/gpgme/util.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--gpgme/util.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/gpgme/util.c b/gpgme/util.c
index 1d777a5d..0c267fe7 100644
--- a/gpgme/util.c
+++ b/gpgme/util.c
@@ -62,19 +62,5 @@ _gpgme_free ( void *a )
-/*********************************************
- ********** missing string functions *********
- *********************************************/
-#ifndef HAVE_STPCPY
-char *
-stpcpy (char *a, const char *b)
-{
- while( *b )
- *a++ = *b++;
- *a = 0;
-
- return a;
-}
-#endif