added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / workbench / c / Beep.c
blob0101f72f561f33532863993e9418cef66793ca5d
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Beep
6 Lang: English
7 */
9 /*****************************************************************************
11 NAME
12 Beep
14 FORMAT
15 Beep
17 SYNOPSIS
19 LOCATION
20 Sys:C
22 FUNCTION
23 BEEP produces a beep via Intuition DisplayBeep(NULL).
25 EXAMPLE
27 SEE ALSO
29 ******************************************************************************/
31 #include <proto/exec.h>
32 #include <intuition/intuition.h>
33 #include <intuition/intuitionbase.h>
34 #include <proto/intuition.h>
35 #include <intuition/screens.h>
37 const TEXT version[] = "$VER: Beep 41.1 (30.12.2000)";
39 int IntuitionBase_version = 0;
41 int main()
43 DisplayBeep( NULL );
44 return 0;