diff options
author | Greg Beaver <cellog@php.net> | 2008-01-12 03:46:47 +0000 |
---|---|---|
committer | Greg Beaver <cellog@php.net> | 2008-01-12 03:46:47 +0000 |
commit | 5d96f54cf9001c61862c10df0925b2184af76ddc (patch) | |
tree | a25884e09331c17be2cfaafd295806708c3743ee /ext/zip/lib/zip_error.c | |
parent | 9ce5990880049726da2a3117c27bfab8e95b7894 (diff) | |
download | php-git-5d96f54cf9001c61862c10df0925b2184af76ddc.tar.gz |
revert last commit, was to wrong branch
Diffstat (limited to 'ext/zip/lib/zip_error.c')
-rw-r--r-- | ext/zip/lib/zip_error.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/zip/lib/zip_error.c b/ext/zip/lib/zip_error.c index 4816b73aea..fe04778691 100644 --- a/ext/zip/lib/zip_error.c +++ b/ext/zip/lib/zip_error.c @@ -42,7 +42,7 @@ -PHPZIPAPI void +void _zip_error_clear(struct zip_error *err) { err->zip_err = ZIP_ER_OK; @@ -51,7 +51,7 @@ _zip_error_clear(struct zip_error *err) -PHPZIPAPI void +void _zip_error_copy(struct zip_error *dst, struct zip_error *src) { dst->zip_err = src->zip_err; @@ -60,7 +60,7 @@ _zip_error_copy(struct zip_error *dst, struct zip_error *src) -PHPZIPAPI void +void _zip_error_fini(struct zip_error *err) { free(err->str); @@ -69,7 +69,7 @@ _zip_error_fini(struct zip_error *err) -PHPZIPAPI void +void _zip_error_get(struct zip_error *err, int *zep, int *sep) { if (zep) @@ -84,7 +84,7 @@ _zip_error_get(struct zip_error *err, int *zep, int *sep) -PHPZIPAPI void +void _zip_error_init(struct zip_error *err) { err->zip_err = ZIP_ER_OK; @@ -94,7 +94,7 @@ _zip_error_init(struct zip_error *err) -PHPZIPAPI void +void _zip_error_set(struct zip_error *err, int ze, int se) { if (err) { |