xref: /original-bsd/old/lib2648/beep.c (revision 4349f2d5)
1*4349f2d5Sdist /*
2*4349f2d5Sdist  * Copyright (c) 1980 Regents of the University of California.
3*4349f2d5Sdist  * All rights reserved.  The Berkeley software License Agreement
4*4349f2d5Sdist  * specifies the terms and conditions for redistribution.
5*4349f2d5Sdist  */
6*4349f2d5Sdist 
7*4349f2d5Sdist #ifndef lint
8*4349f2d5Sdist static char sccsid[] = "@(#)beep.c	5.1 (Berkeley) 04/26/85";
9*4349f2d5Sdist #endif not lint
106cf386a8Sralph 
116cf386a8Sralph #include "2648.h"
126cf386a8Sralph 
beep()136cf386a8Sralph beep()
146cf386a8Sralph {
156cf386a8Sralph 	escseq(NONE);
166cf386a8Sralph 	outchar('\7');
176cf386a8Sralph }
18