summaryrefslogtreecommitdiff
path: root/flexdef.h
diff options
context:
space:
mode:
authorVern Paxson <vern@ee.lbl.gov>1993-12-15 10:23:16 +0000
committerVern Paxson <vern@ee.lbl.gov>1993-12-15 10:23:16 +0000
commitf22335869e33218a0111c5c27735a106393bc04c (patch)
tree0eb6e76d2b7144a5fa22f69c101e4534602bf88d /flexdef.h
parentbc0de0da240ebf516fcef5fde216308da1cb62b6 (diff)
alloc routines take unsigned
Diffstat (limited to 'flexdef.h')
-rw-r--r--flexdef.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/flexdef.h b/flexdef.h
index b9046c2..b0f5fe6 100644
--- a/flexdef.h
+++ b/flexdef.h
@@ -606,8 +606,8 @@ extern int num_backing_up, bol_needed;
void *allocate_array PROTO((int, int));
void *reallocate_array PROTO((void*, int, int));
-void *yy_flex_alloc PROTO((int));
-void *yy_flex_realloc PROTO((void*, int));
+void *yy_flex_alloc PROTO((unsigned int));
+void *yy_flex_realloc PROTO((void*, unsigned int));
void yy_flex_free PROTO((void*));
int yy_flex_strcmp PROTO(( const char *s1, const char *s2 ));
void yy_flex_strcpy PROTO(( char *s1, const char *s2 ));