mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-01-12 01:45:25 +00:00
17 lines
250 B
C
17 lines
250 B
C
|
// Copyright 2019, Collabora, Ltd.
|
||
|
// SPDX-License-Identifier: BSL-1.0
|
||
|
/*!
|
||
|
* @file
|
||
|
* @brief Very small misc utils.
|
||
|
* @author Jakob Bornecrantz <jakob@collabora.com>
|
||
|
*/
|
||
|
|
||
|
#include "util/u_misc.h"
|
||
|
|
||
|
|
||
|
int
|
||
|
u_silence_pedantic_warning()
|
||
|
{
|
||
|
return 42;
|
||
|
}
|