mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
16 lines
294 B
C
16 lines
294 B
C
|
#include "libcompat.h"
|
||
|
|
||
|
/* silence warnings about an empty library */
|
||
|
void
|
||
|
ck_do_nothing (void)
|
||
|
{
|
||
|
assert (0);
|
||
|
|
||
|
/*
|
||
|
* to silence warning about this function actually
|
||
|
* returning, but being marked as noreturn. assert()
|
||
|
* must be marked as a function that returns.
|
||
|
*/
|
||
|
exit (1);
|
||
|
}
|