From e29270a6d8ace619a2dccab9eb7f37ab8643a953 Mon Sep 17 00:00:00 2001 From: Damien Fouilleul Date: Wed, 13 Jul 2005 14:17:24 +0000 Subject: [PATCH] isblank() is not an ANSI function,it should really be tested for --- src/stream_output/acl.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/stream_output/acl.c b/src/stream_output/acl.c index 386071baa7..a7d7dcae73 100644 --- a/src/stream_output/acl.c +++ b/src/stream_output/acl.c @@ -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 ) { -- 2.39.2