blob: ec4c4da4cd30ab2f2798173dbb4a41e4eaad175c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef MLIBC_INLINE_DEFINITION_H
#define MLIBC_INLINE_DEFINITION_H
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __MLIBC_EMIT_INLINE_DEFINITIONS
#define __MLIBC_INLINE_DEFINITION
#else
#define __MLIBC_INLINE_DEFINITION __attribute__((__gnu_inline__)) extern __inline__
#endif
#ifdef __cplusplus
}
#endif
#endif // MLIBC_INLINE_DEFINITION_H
|