summaryrefslogtreecommitdiff
path: root/misc.c
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 /misc.c
parent9e6aac8df85a6e0e0bba6d269756847f1d720eb8 (diff)
yy_str*() -> str*()
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc.c b/misc.c
index 2b513cb..4bb7b61 100644
--- a/misc.c
+++ b/misc.c
@@ -41,7 +41,7 @@ int otoi PROTO((Char []));
void add_action( new_text )
char *new_text;
{
- int len = yy_strlen( new_text );
+ int len = strlen( new_text );
while ( len + action_index >= action_size - 10 /* slop */ )
{
@@ -50,7 +50,7 @@ char *new_text;
reallocate_character_array( action_array, action_size );
}
- yy_strcpy( &action_array[action_index], new_text );
+ strcpy( &action_array[action_index], new_text );
action_index += len;
}