xref: /csrg-svn/old/lib2648/beep.c (revision 18801)
1*18801Sdist /*
2*18801Sdist  * Copyright (c) 1980 Regents of the University of California.
3*18801Sdist  * All rights reserved.  The Berkeley software License Agreement
4*18801Sdist  * specifies the terms and conditions for redistribution.
5*18801Sdist  */
611462Sralph 
7*18801Sdist #ifndef lint
8*18801Sdist static char sccsid[] = "@(#)beep.c	5.1 (Berkeley) 04/26/85";
9*18801Sdist #endif not lint
10*18801Sdist 
1111462Sralph #include "2648.h"
1211462Sralph 
beep()1311462Sralph beep()
1411462Sralph {
1511462Sralph 	escseq(NONE);
1611462Sralph 	outchar('\7');
1711462Sralph }
18