summaryrefslogtreecommitdiff
path: root/src/examples/eo/isa/eo_isa_mixin.h
blob: b09ba4d5de7ecc903ed8858b1d9895cd2dc309a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef MIXIN_H
#define MIXIN_H

#include "Eo.h"

/**
 * @def mixin_a_square_get(ret)
 * @brief Get the square of a.
 * @param[out] ret the square of a
 */
EAPI int mixin_a_square_get(void);

#define MIXIN_CLASS mixin_class_get()
const Eo_Class *mixin_class_get(void);

#endif