home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 125.img / PRO-C4.ZIP / BENCH1.ZIP / BENCH / DOBELL.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-28  |  823 b   |  37 lines

  1. /* ==( bench/dobell.c )== */
  2.  
  3. /* ----------------------------------------------- */
  4. /* Pro-C  Copyright (C) 1988 - 1990 Vestronix Inc. */
  5. /* Modification to this source is not supported    */
  6. /* by Vestronix Inc.                               */
  7. /*            All Rights Reserved                  */
  8. /* ----------------------------------------------- */
  9. /* Written   Nig   1-Jan-87                        */
  10. /* Modified  Geo  11-Dec-89  See comments below    */
  11. /* ----------------------------------------------- */
  12. /* %W%  (%H% %T%) */
  13.  
  14. /*
  15.  *  Modifications
  16.  *
  17.  *   4-Nov-89  Geo - V2 version
  18.  *  25-Oct-89  Geo - 1.32 Merge
  19. */
  20.  
  21.  
  22. /*
  23.  * Sound the Bell
  24. */
  25. # include <stdio.h>
  26. # include <bench.h>
  27.  
  28. void do_bell()
  29. {
  30.     flushscr();
  31. # ifndef WDEBUG
  32.    putchar(7);
  33.    fflush(stdout);
  34. # endif
  35. }
  36.  
  37.