Skip to content

ssaparse: include required system headers for isspace() and sscanf() functions

Khem Raj requested to merge kraj/gstreamer:main into main

Newer compilers ( clang 15 ) has turned stricter and errors out instead of warning on implicit function declations

Fixes gstssaparse.c:297:12: error: call to undeclared library function 'isspace' with type 'int (int)'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] while (isspace(*t))

Signed-off-by: Khem Raj raj.khem@gmail.com

Edited by Sebastian Dröge

Merge request reports