diff options
author | Julien Pauli <jpauli@php.net> | 2014-02-17 10:25:40 +0100 |
---|---|---|
committer | Julien Pauli <jpauli@php.net> | 2014-02-17 10:25:40 +0100 |
commit | 786234d351c40a9b4808d1dd13d2f91f2f5314be (patch) | |
tree | ce70210592b7f97c7a5f30fc03e802ea2347b813 /ext/json/json.c | |
parent | f275fdcf0095a108c33f2843011c6fac54216121 (diff) | |
download | php-git-786234d351c40a9b4808d1dd13d2f91f2f5314be.tar.gz |
Export JsonSerializable Interface (bug #65753)
Diffstat (limited to 'ext/json/json.c')
-rw-r--r-- | ext/json/json.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/json/json.c b/ext/json/json.c index 5b85b286bf..37ee314936 100644 --- a/ext/json/json.c +++ b/ext/json/json.c @@ -38,7 +38,7 @@ static PHP_FUNCTION(json_last_error); static const char digits[] = "0123456789abcdef"; -zend_class_entry *php_json_serializable_ce; +PHP_JSON_API zend_class_entry *php_json_serializable_ce; ZEND_DECLARE_MODULE_GLOBALS(json) |