summaryrefslogtreecommitdiff
path: root/PE/compil.lex
diff options
context:
space:
mode:
authorpixel <pixel>2003-09-06 00:40:35 +0000
committerpixel <pixel>2003-09-06 00:40:35 +0000
commita75df1a6b4c2788b80b3916e072ff945ee03748f (patch)
tree6c2d4b2ee281dfe561fd90dc85713bc0a34ed604 /PE/compil.lex
parent44adf768555ecd211f90cbf4d87b44ba42044d86 (diff)
Fixed Parasite Eve
Diffstat (limited to 'PE/compil.lex')
-rw-r--r--PE/compil.lex5
1 files changed, 5 insertions, 0 deletions
diff --git a/PE/compil.lex b/PE/compil.lex
index e59c6b1..f5c6d22 100644
--- a/PE/compil.lex
+++ b/PE/compil.lex
@@ -1,3 +1,4 @@
+ #include <string.h>
#define yputc(a) putc(a, yyout)
#include "table.h"
@@ -72,6 +73,10 @@
%%
+int yywrap(void) {
+ return 0;
+}
+
int main(int argc, char ** argv) {
if ((argc < 2) || (argc > 3)) {
fprintf(stderr, "Usage: %s <output> [input]\n", argv[0]);