tools/llvm: Do not build with symbols
[minix3.git] / external / bsd / flex / dist / libmain.c
blob2eb5cdfe10f0b6cf705f4fcf268a25f1a2a59abb
1 /* $NetBSD: libmain.c,v 1.2 2012/02/18 19:17:54 christos Exp $ */
3 /* libmain - flex run-time support library "main" function */
5 /* This file is part of flex. */
7 /* Redistribution and use in source and binary forms, with or without */
8 /* modification, are permitted provided that the following conditions */
9 /* are met: */
11 /* 1. Redistributions of source code must retain the above copyright */
12 /* notice, this list of conditions and the following disclaimer. */
13 /* 2. Redistributions in binary form must reproduce the above copyright */
14 /* notice, this list of conditions and the following disclaimer in the */
15 /* documentation and/or other materials provided with the distribution. */
17 /* Neither the name of the University nor the names of its contributors */
18 /* may be used to endorse or promote products derived from this software */
19 /* without specific prior written permission. */
21 /* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR */
22 /* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED */
23 /* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR */
24 /* PURPOSE. */
26 extern int yylex(void);
28 int
29 /*ARGSUSED*/
30 main(int argc, char *argv[])
32 while (yylex() != 0)
33 continue;
34 return 0;