Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
bb61218c
Commit
bb61218c
authored
Jan 16, 2000
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed lextest, because lex'ed files are now in the distribution.
parent
759fba48
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
55 deletions
+0
-55
src/lextest/Makefile
src/lextest/Makefile
+0
-24
src/lextest/lextest.c
src/lextest/lextest.c
+0
-18
src/lextest/scan.l
src/lextest/scan.l
+0
-13
No files found.
src/lextest/Makefile
deleted
100644 → 0
View file @
759fba48
#
# Makefile - test for 2.5.3 flex bug
# Bruce Momjian 5/14/97
#
SRCDIR
=
../
include
../Makefile.global
.DEFAULT all
:
lextest
install
:
depend
:
lextest
:
lextest.c scan.l
$(LEX)
scan.l
$(CC)
-c
lex.yy.c
$(CC)
-c
lextest.c
$(CC)
-o
lextest lex.yy.o lextest.o
@
echo
"If this fails, flex is broken"
| ./lextest
||
rm
-f
lextest
clean
:
rm
-f
lextest
$(X)
lex.yy.c lex.yy.o lextest.o
dep
:
src/lextest/lextest.c
deleted
100644 → 0
View file @
759fba48
/*
** lextest.c
**
** tests for flex 2.5.3 bug
*/
int
main
()
{
yylex
();
return
0
;
}
int
yywrap
()
{
return
1
;
};
src/lextest/scan.l
deleted
100644 → 0
View file @
759fba48
%{
/*
This should work, but non-patched flex 2.5.3 fails because input()
doesn't return EOF or '\0'
Bruce Momjian <root@candle.pha.pa.us>
*/
%}
%%
. {
int ch;
while ((ch = input()) != EOF && ch != '\0')
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment