/*
 * COPYRIGHT:         See COPYING in the top level directory
 * PROJECT:           ReactOS system libraries
 * PURPOSE:           Implementation of exp
 * FILE:              lib/sdk/crt/math/amd64/exp.S
 * PROGRAMMER:        Timo Kreuzer (timo.kreuzer@reactos.org)
 */

/* INCLUDES ******************************************************************/

#include <asm.inc>
#include <ksamd64.inc>

/* FUNCTIONS ****************************************************************/

.code64

PUBLIC exp
exp:
    UNIMPLEMENTED exp
    ret

END