update readme
[m6w6/ext-psi] / src / types / impl_type.c
index be173aa9b1b646a437f0de820621c75b5cca5d95..e4ace47e69ed74326508025b3493eb188ec00b7f 100644 (file)
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *******************************************************************************/
 
-#include "php_psi_stdinc.h"
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#else
+# include "php_config.h"
+#endif
 #include "data.h"
 
 struct psi_impl_type *psi_impl_type_init(token_t type, zend_string *name)
@@ -36,9 +40,9 @@ struct psi_impl_type *psi_impl_type_init(token_t type, zend_string *name)
        return t;
 }
 
-void psi_impl_type_dump(int fd, struct psi_impl_type *type)
+void psi_impl_type_dump(struct psi_dump *dump, struct psi_impl_type *type)
 {
-       dprintf(fd, "%s", type->name->val);
+       PSI_DUMP(dump, "%s", type->name->val);
 }
 
 void psi_impl_type_free(struct psi_impl_type **type_ptr)