repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
etc/services - sync with NetBSD-8
[minix.git]
/
external
/
bsd
/
flex
/
dist
/
examples
/
manual
/
reject.lex
blob
a7b817f20c28927ffdd09c0961b84fedb9afc883
1
/*
2
* reject.lex: An example of REJECT and unput()
3
* misuse.
4
*/
5
6
%%
7
UNIX {
8
unput('U'); unput('N'); unput('G'); unput('\0');
9
REJECT;
10
}
11
GNU printf("GNU is Not Unix!\n");
12
%%