13 lines
157 B
C
13 lines
157 B
C
#pragma once
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void vx_vec_saxpy(int n, int scalar, int* a, int* b);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|