mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
2853ffe4ff
In addition to stage changes: * use LOCAL/ instead of MASTER_SITE_LOCAL and MASTER_SITE_SUBDIR * narrow CONFLICTS to please portlint * Fix flex issues for FreeBSD 10+ * removed unnecessary patch-aa by setting CC in MAKE_ARGS Approved by: staging blanket
12 lines
214 B
C
12 lines
214 B
C
--- main.c.orig 1997-02-03 10:59:32.000000000 +0000
|
|
+++ main.c
|
|
@@ -7,7 +7,7 @@ char *yylex();
|
|
int main()
|
|
{
|
|
char *line;
|
|
- while(line = yylex()){
|
|
+ while((line = yylex())){
|
|
printf("%s", line);
|
|
}
|
|
return 0;
|