home *** CD-ROM | disk | FTP | other *** search
- /* ==( bench/dobell.c )== */
-
- /* ----------------------------------------------- */
- /* Pro-C Copyright (C) 1988 - 1990 Vestronix Inc. */
- /* Modification to this source is not supported */
- /* by Vestronix Inc. */
- /* All Rights Reserved */
- /* ----------------------------------------------- */
- /* Written Nig 1-Jan-87 */
- /* Modified Geo 11-Dec-89 See comments below */
- /* ----------------------------------------------- */
- /* %W% (%H% %T%) */
-
- /*
- * Modifications
- *
- * 4-Nov-89 Geo - V2 version
- * 25-Oct-89 Geo - 1.32 Merge
- */
-
-
- /*
- * Sound the Bell
- */
- # include <stdio.h>
- # include <bench.h>
-
- void do_bell()
- {
- flushscr();
- # ifndef WDEBUG
- putchar(7);
- fflush(stdout);
- # endif
- }
-
-