5 lines
94 B
C++
5 lines
94 B
C++
#include <stdint.h>
|
|
|
|
extern "C" uint32_t my_add(uint32_t a, uint32_t b) {
|
|
return a + b;
|
|
}
|