etc/services - sync with NetBSD-8
[minix.git] / external / bsd / flex / dist / examples / manual / reject.lex
bloba7b817f20c28927ffdd09c0961b84fedb9afc883
1 /* 
2  * reject.lex: An example of REJECT and unput()
3  *             misuse.
4  */
6 %%
7 UNIX       { 
8                 unput('U'); unput('N'); unput('G'); unput('\0');
9                 REJECT;
10            } 
11 GNU        printf("GNU is Not Unix!\n");