home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / prof_c / util / beep.c next >
Encoding:
C/C++ Source or Header  |  1988-08-11  |  125 b   |  14 lines

  1. /*
  2.  *    beep -- sound the terminal beeper
  3.  */
  4.  
  5. #include <stdio.h>
  6.  
  7. #define BEL    7
  8.  
  9. void
  10. beep()
  11. {
  12.     putchar(BEL);
  13. }
  14.