summaryrefslogtreecommitdiff
path: root/src/scan.l
diff options
context:
space:
mode:
authorMichael McConville <mmcconville@mykolab.com>2015-12-08 21:12:21 -0500
committerWill Estes <westes575@gmail.com>2015-12-09 09:51:17 -0500
commit1cc5d870326d0c574a21bbe85457bfc50d6cc43e (patch)
tree8bbb5c8f2195d326bf914fc4755f3f62e27db81d /src/scan.l
parentc53d722b0b4e81b08cfc2f9ff6675a7abe0de2c3 (diff)
Removed flex_realloc().
As with flex_alloc(), replace calls to flex_realloc(), which was just a wrapper around realloc().
Diffstat (limited to 'src/scan.l')
-rw-r--r--src/scan.l5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/scan.l b/src/scan.l
index 8407fea..c5c25ec 100644
--- a/src/scan.l
+++ b/src/scan.l
@@ -1013,11 +1013,6 @@ void set_input_file( char *file )
/* Wrapper routines for accessing the scanner's malloc routines. */
-void *flex_realloc( void *ptr, size_t size )
- {
- return realloc(ptr, size);
- }
-
void flex_free( void *ptr )
{
if ( ptr )