mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
f1df7aba8f
This lifts the files almost verbatim (the changes being running though gst-indent and fixing the FSF address) from the upstream respository. Therefore this commit reverts some GStreamer-specific patches to check that will be reintroduced next. Fixes https://bugzilla.gnome.org/show_bug.cgi?id=727826
15 lines
294 B
C
15 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);
|
|
}
|