subsurface/core/ssrf.h
jan Iversen bf7954ebe7 core: remove LOG_STP from mobile
LOG_STP is on longer providing the data needed, since a lot of the startup
is indirectly in QML, furthermore using the xcode project and running profiler
gives much more detailed information

Signed-off-by: Jan Iversen <jani@apache.org>
2019-12-13 07:04:00 -05:00

22 lines
383 B
C

// SPDX-License-Identifier: GPL-2.0
#ifndef SSRF_H
#define SSRF_H
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __clang__
// Clang has a bug on zero-initialization of C structs.
#pragma clang diagnostic ignored "-Wmissing-field-initializers"
#endif
#ifdef __cplusplus
}
#else
// Macro to be used for silencing unused parameters
#define UNUSED(x) (void)x
#endif
#endif // SSRF_H