Commit e29270a6 authored by Damien Fouilleul's avatar Damien Fouilleul

isblank() is not an ANSI function,it should really be tested for

parent 7334f942
......@@ -256,6 +256,9 @@ void ACL_Destroy( vlc_acl_t *p_acl )
}
}
#ifndef isblank
# define isblank(c) ((c) == ' ' || (c) == '\t')
#endif
int ACL_LoadFile( vlc_acl_t *p_acl, const char *psz_path )
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment