summaryrefslogtreecommitdiffstats
path: root/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/language-bindings/python/wamr-api/samples/sum.c
blob: 586c5bc6a58553bbc1b7286119ed3e720d1cc9c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * Copyright (C) 2019 Intel Corporation.  All rights reserved.
 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 */

#include <stdio.h>

int
sum(int a, int b)
{
    return a + b;
}