From: Russ Cox Date: Fri, 20 Mar 2009 21:22:37 +0000 (-0700) Subject: move pragtextflag into lexbody X-Git-Tag: weekly.2009-11-06~1997 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=0932b1f9b8e9b6e9b499a84702d632b9feac2ee6;p=gostls13.git move pragtextflag into lexbody R=ken OCL=26581 CL=26587 --- diff --git a/src/cmd/6a/lex.c b/src/cmd/6a/lex.c index 8dea599a65..22539fc7ea 100644 --- a/src/cmd/6a/lex.c +++ b/src/cmd/6a/lex.c @@ -1334,12 +1334,5 @@ praghjdicks(void) ; } -void -pragtextflag(void) -{ - while(getnsc() != '\n') - ; -} - #include "../cc/lexbody" #include "../cc/macbody" diff --git a/src/cmd/cc/lexbody b/src/cmd/cc/lexbody index 27e40fe49d..33734c7224 100644 --- a/src/cmd/cc/lexbody +++ b/src/cmd/cc/lexbody @@ -53,6 +53,13 @@ pragfpround(void) ; } +void +pragtextflag(void) +{ + while(getnsc() != '\n') + ; +} + void pragprofile(void) {