/* $Revision: 1.8 $ */
#ifndef VERSION

#ifdef V4_COMPAT
#define VERSION "MATLAB 4 compatible"
#else
#define VERSION "MATLAB R11 native"
#endif /* V4_COMPAT */

#endif /* VERSION */

#ifdef ARRAY_ACCESS_INLINING
#define INLINE " (inlined)"
#else
#define INLINE
#endif /* ARRAY_ACCESS_INLINING */

static const char *version = VERSION INLINE;

#ifdef __cplusplus
extern "C" {
#endif

const char *mexVersion () {
/* mex version information */
return version;
}

#ifdef __cplusplus
}
#endif

