Don't call InvertPixelArray with negative width and/or height.
[tangerine.git] / workbench / c / Beep.c
blobc6391dad1a920ef3e2ee85f5922a3d15e64d3964
1 /*
2 Copyright © 1995-2001, 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 Workbench: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 #include <stdio.h>
39 static const char version[] = "$VER: Beep 41.0 (30.12.2000)";
41 int IntuitionBase_version = 0;
43 int main()
45 DisplayBeep( NULL );
46 return 0;