diff options
author | Derick Rethans <derick@php.net> | 2002-11-17 19:45:10 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2002-11-17 19:45:10 +0000 |
commit | 8c86784caeea805c48fa8c336efef485371a29a8 (patch) | |
tree | 72c9fbcf28c2a81211173f05246ab85f908b6fc0 /ext/gd/libgd/gdhelpers.c | |
parent | 06d94f216982ea3675d7075b819a001817b2670f (diff) | |
download | php-git-8c86784caeea805c48fa8c336efef485371a29a8.tar.gz |
- MFB
Diffstat (limited to 'ext/gd/libgd/gdhelpers.c')
-rw-r--r-- | ext/gd/libgd/gdhelpers.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/gd/libgd/gdhelpers.c b/ext/gd/libgd/gdhelpers.c index 6f01872deb..32620e8551 100644 --- a/ext/gd/libgd/gdhelpers.c +++ b/ext/gd/libgd/gdhelpers.c @@ -100,3 +100,9 @@ gdFree (void *ptr) { efree (ptr); } + +char * +gdEstrdup (const char *ptr) +{ + return estrdup(ptr); +} |