Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
18145531
...
1814553117b82d9580c42cbf1fc4f8d35170fda3
authored
2001-07-27 09:33:49 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Provide rpl_realloc() for systems with broken implementation
1 parent
a4b00334
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
0 deletions
lib/realloc.c
lib/realloc.c
0 → 100644
View file @
1814553
/* rpl_realloc.c -- a replacement for broken realloc implementations
Copyright (C) 2001 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#include <stdlib.h>
void
*
rpl_realloc
(
void
*
ptr
,
size_t
size
)
{
if
(
!
ptr
)
return
malloc
(
size
);
if
(
!
size
)
{
if
(
ptr
)
free
(
ptr
);
return
malloc
(
size
);
}
return
realloc
(
ptr
,
size
);
}
Please
register
or
sign in
to post a comment