blob: 306ff0f934d034090e7ac8d8f694660fa17b1ddb [file] [log] [blame]
// Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#include <stdint.h>
// Simple tests with primitives.
void func1();
int32_t func2(int16_t);
double func3(float, int8_t a, int64_t, int32_t b);
// Tests with pointers to primitives.
void *func4(int8_t **, double, int32_t ***);