fix to safe_strdup prototype.

Signed-off-by: Sami Kerola <kerolasa@iki.fi>
This commit is contained in:
Sami Kerola 2011-02-12 23:07:57 +01:00
parent fdcfcd12d3
commit ed2266424d
2 changed files with 2 additions and 2 deletions

View file

@ -51,7 +51,7 @@ void *safe_malloc(const size_t size)
}
/* Simple strdup wrapper */
inline char *safe_strdup(const char *str)
char *safe_strdup(const char *str)
{
char *ret = strdup(str);