From: Vern Paxson Date: Mon, 5 Apr 1993 20:36:29 +0000 (+0000) Subject: Added non-STDC clause for '\a' X-Git-Tag: flex-2-5-5b~450 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=93d6d7ce4a3ffca0a36b18053929caf6b1346353;p=flex Added non-STDC clause for '\a' --- diff --git a/misc.c b/misc.c index d0e8e89..b371a74 100644 --- a/misc.c +++ b/misc.c @@ -643,6 +643,8 @@ Char array[]; { #ifdef __STDC__ case 'a': return ( '\a' ); +#else + case 'a': return ( '\007' ); #endif case 'b': return ( '\b' ); case 'f': return ( '\f' );