<?php

/**
 * Clone an object in PHP 4
 * @param object
 * @return object
 */
function phpDocumentor_clone($obj)
{
    return $obj;
}

?>