/*
 *  $RCSfile: no_audio.c,v $
 *  Included when no audio is supported on specific platform.
 *
 *  Copyright 1984-2000 The MathWorks, Inc.
 *  $Revision: 1.8 $  $Date: 2000/06/19 13:17:54 $
 */

#include <math.h>
#include "mex.h"

void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
    mexErrMsgTxt("Audio function is not supported on this platform.");
}

/* [EOF] no_audio.c */
