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

#include "Eo.h"

/**
 * @def interface_a_power_3_get(ret)
 * @brief Get a^3
 * @return integer value
 */
EAPI int interface_a_power_3_get(void);

#define INTERFACE_CLASS interface_class_get()
const Eo_Class *interface_class_get(void);

#endif