//----------------------------------------------------------------
//
// NeuroChip NM6403, C++ library
// 1997-1999 (c) RC Module Inc.
// ctime,
//
//----------------------------------------------------------------

#ifndef _CTIME_HEADER
#define _CTIME_HEADER


#include <_nsstd.h>


    // ticks per second
#define CLOCKS_PER_SEC 40000000


_NS_STD_BEGIN

typedef unsigned int clock_t;

#if defined(__cplusplus)
extern "C" {
#endif

        // function returning current clock value

    clock_t clock( void );

#if defined(__cplusplus)
}   // extern "C"
#endif

_NS_STD_END


#endif  // _CTIME_HEADER
