blob: abb166577d3896e4770c3d5a2a8f387662eb3a51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef SAND_COMPILER_ATTRIBUTES_H
#define SAND_COMPILER_ATTRIBUTES_H
// This is a helper module which defines various small helpers. It should only
// be used internally, hence the underscore prefix.
#ifdef __GNUC__
#define _SAND_FORMAT_ATTR(archetype, string_index, first_to_check) __attribute__((format(archetype, string_index, first_to_check)))
#else
#define _SAND_FORMAT_ATTR(archetype, string_index, first_to_check)
#endif
#endif
|