sum.c 194 B

123456789101112
  1. /*
  2. * Copyright (C) 2019 Intel Corporation. All rights reserved.
  3. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. */
  5. #include <stdio.h>
  6. int
  7. sum(int a, int b)
  8. {
  9. return a + b;
  10. }