7 lines
115 B
C
7 lines
115 B
C
|
#include <stdint.h>
|
||
|
#include "_cgo_export.h"
|
||
|
|
||
|
int64_t add(int64_t x, int64_t y) {
|
||
|
return AddInternal(x + y, 0);
|
||
|
}
|