/*
 *	Universal Terminal Interface -- Bells & Whistles
 *
 *	(c) 1997 Martin Mares, <mj@ericsson.cz>
 */

#include "termint.h"

void
Tbell(void)
{
  if (STR(BELL))
    send(STR(BELL));
  else if (STR(VISUAL_BELL))
    send(STR(VISUAL_BELL));
}
