diff options
| author | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-11-28 14:58:51 +0000 | 
|---|---|---|
| committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-11-28 14:58:51 +0000 | 
| commit | 6916e47018a8c6788dae5b227a259d86ccd41e52 (patch) | |
| tree | 93011a9698a938afd35d12023fbf979584ed1463 /libyywrap.c | |
| parent | 112e4e871cc4a49e5a8f41355bdf4cefe3bbb6bf (diff) | |
Diffstat (limited to 'libyywrap.c')
| -rw-r--r-- | libyywrap.c | 27 | 
1 files changed, 27 insertions, 0 deletions
| diff --git a/libyywrap.c b/libyywrap.c new file mode 100644 index 0000000000000..8561a43f4cdd3 --- /dev/null +++ b/libyywrap.c @@ -0,0 +1,27 @@ +/* libyywrap - flex run-time support library "yywrap" function */ + +/*  This file is part of flex. */ + +/*  Redistribution and use in source and binary forms, with or without */ +/*  modification, are permitted provided that the following conditions */ +/*  are met: */ + +/*  1. Redistributions of source code must retain the above copyright */ +/*     notice, this list of conditions and the following disclaimer. */ +/*  2. Redistributions in binary form must reproduce the above copyright */ +/*     notice, this list of conditions and the following disclaimer in the */ +/*     documentation and/or other materials provided with the distribution. */ + +/*  Neither the name of the University nor the names of its contributors */ +/*  may be used to endorse or promote products derived from this software */ +/*  without specific prior written permission. */ + +/*  THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR */ +/*  IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED */ +/*  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR */ +/*  PURPOSE. */ + +int     yywrap (void) +{ +	return 1; +} | 
