summaryrefslogtreecommitdiff
path: root/flexdef.h
diff options
context:
space:
mode:
authorVern Paxson <vern@ee.lbl.gov>1993-12-11 17:06:24 +0000
committerVern Paxson <vern@ee.lbl.gov>1993-12-11 17:06:24 +0000
commit3b1159f9651f6cce1d6383ef8f3bdb12274476f3 (patch)
tree4f319a6460f801c558a48d965e3f9f4facf33584 /flexdef.h
parent9e6aac8df85a6e0e0bba6d269756847f1d720eb8 (diff)
yy_str*() -> str*()
Diffstat (limited to 'flexdef.h')
-rw-r--r--flexdef.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/flexdef.h b/flexdef.h
index bfed07e..c8a26f1 100644
--- a/flexdef.h
+++ b/flexdef.h
@@ -609,9 +609,13 @@ 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*));
-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 ));
+int yy_flex_strcmp PROTO(( const char *s1, const char *s2 ));
+void yy_flex_strcpy PROTO(( char *s1, const char *s2 ));
+int yy_flex_strlen PROTO(( const char *s ));
+
+#define strcmp yy_flex_strcmp
+#define strcpy yy_flex_strcpy
+#define strlen yy_flex_strlen
#define allocate_integer_array(size) \
(int *) allocate_array( size, sizeof( int ) )