How do I make my program beep.
Karl Heuer
karl at haddock.ima.isc.com
Wed Jun 13 12:02:09 AEST 1990
In article <6439 at crabcake> arromdee at crabcake.cs.jhu.edu (Kenneth Arromdee) writes:
>In article <3265 at sactoh0.UUCP> jak at sactoh0.UUCP (Jay A. Konigsberg) writes:
>>The following was extracted from the current release of Gnu Awk 2.11.1.
>
>[Isn't that copylefted code, then?]
The following code fragment is in the public domain.
#if '\a' != 'a'
#define BEL '\a'
#else
#define BEL '\7'
#endif
#define ringbell() putc(BEL, stderr)
More information about the Comp.lang.c
mailing list