diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2004-10-19 21:46:59 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2004-10-19 21:46:59 +0000 |
commit | 2dd8978a497a9a932c38fc1223ebf2c4ab55f49a (patch) | |
tree | 6fc0ade1a0221666429c2b8771cbe89746efa443 /fetchmail.h | |
parent | f8b70c78177ea541eb234655a88cb28480088fba (diff) | |
download | fetchmail-2dd8978a497a9a932c38fc1223ebf2c4ab55f49a.tar.gz fetchmail-2dd8978a497a9a932c38fc1223ebf2c4ab55f49a.tar.bz2 fetchmail-2dd8978a497a9a932c38fc1223ebf2c4ab55f49a.zip |
Add replacement stpcpy.
svn path=/trunk/; revision=3947
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fetchmail.h b/fetchmail.h index b47d6293..07b7978b 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -686,6 +686,10 @@ char *strerror (int); #endif #endif +#ifndef HAVE_STPCPY +char *stpcpy(char *, const char*); +#endif + #ifdef FETCHMAIL_DEBUG #define exit(e) do { \ FILE *out; \ |