/* acquire-proc.c
 *
 * COPYRIGHT (c) 1994 by AT&T Bell Laboratories.
 */

#include "ml-base.h"
#include "ml-mp.h"
#include "cfun-proto-list.h"

/* _ml_MP_acquire_proc:
 */
ml_val_t _ml_MP_acquire_proc (ml_state_t *msp, ml_val_t arg)
{

#ifdef MP_SUPPORT
    return MP_AcquireProc (msp, arg);
#else
    Die ("ml_acquire_proc: no mp support\n");
#endif

} /* end of _ml_MP_acquire_proc */


syntax highlighted by Code2HTML, v. 0.9.1