blob: d652d28b9e54a3347a088450a169f758c0368c8c (
plain)
1
2
3
4
5
6
7
8
|
// SPDX-license-identifer: Apache-2.0
// Copyright © 2021 Intel Corporation
#include "header.h"
int32_t add(const int32_t first, const int32_t second) {
return first + second;
}
|