FreeBASIC  0.91.0
sys_beep.c
Go to the documentation of this file.
1 /* beep function */
2 
3 #include "../fb.h"
4 
5 FBCALL void fb_Beep( void )
6 {
7  putc('\a', stdout);
8 }