/*
 * playsnd.c - driver that includes the appropriate
 *    platform-dependent code.
 *
 * $Revision: 1.16 $ $Date: 2000/06/01 16:33:57 $
 * Copyright 1984-2000 The MathWorks, Inc.
 */

#if defined(ARCH_SGI64) || defined(ARCH_SGI)
#include "playsnd_sgi.c"

#elif defined(WIN32)
#include "playsnd_nt.c"

#else
#include "no_audio.c"

#endif

/* [EOF] playsnd.c */
