summaryrefslogtreecommitdiff
path: root/flexdef.h
diff options
context:
space:
mode:
authorVern Paxson <vern@ee.lbl.gov>1993-12-02 21:52:00 +0000
committerVern Paxson <vern@ee.lbl.gov>1993-12-02 21:52:00 +0000
commit894a71a5ff92683be4fd9a66996ad9d8e0615e6a (patch)
tree738a988c4b9e35749048f600e95686fd1235653e /flexdef.h
parent05262755f074b2ae76aba024bcbdf0690aa5b837 (diff)
Use yy_strXXX() routines instead of <string.h>
Diffstat (limited to 'flexdef.h')
-rw-r--r--flexdef.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/flexdef.h b/flexdef.h
index 8164b5f..b0c818f 100644
--- a/flexdef.h
+++ b/flexdef.h
@@ -29,7 +29,6 @@
/* @(#) $Header$ (LBL) */
#include <stdio.h>
-#include <string.h>
#include <ctype.h>
/* Always be prepared to generate an 8-bit scanner. */
@@ -608,7 +607,9 @@ void *reallocate_array PROTO((void*, int, int));
void *yy_flex_alloc PROTO((int));
void *yy_flex_realloc PROTO((void*, int));
void yy_flex_free PROTO((void*));
-void *yy_flex_xmalloc PROTO((int));
+int yy_strcmp PROTO(( const char *s1, const char *s2 ));
+void yy_strcpy PROTO(( char *s1, const char *s2 ));
+int yy_strlen PROTO(( const char *s ));
#define allocate_integer_array(size) \
(int *) allocate_array( size, sizeof( int ) )