Path: utzoo!utgpu!news-server.csri.toronto.edu!mailrus!cs.utexas.edu!usc!snorkelwacker!spdcc!ima!haddock!karl From: karl@haddock.ima.isc.com (Karl Heuer) Newsgroups: comp.lang.c Subject: Re: How do I make my program beep. Message-ID: <16863@haddock.ima.isc.com> Date: 13 Jun 90 02:02:09 GMT References: <3265@sactoh0.UUCP> <6439@crabcake> Reply-To: karl@haddock.ima.isc.com (Karl Heuer) Organization: Interactive Systems, Cambridge, MA 02138-5302 Lines: 14 In article <6439@crabcake> arromdee@crabcake.cs.jhu.edu (Kenneth Arromdee) writes: >In article <3265@sactoh0.UUCP> jak@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)