mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
9c2bb85f30
This test will be useful to test that calls to external libraries using float arguments work as appropriate.
12 lines
245 B
C
12 lines
245 B
C
/*
|
|
* This file is distributed under the MIT License. See LICENSE.md for details.
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
printf("%d %f %f\n", argc, (float) argc, (float) argc);
|
|
return EXIT_SUCCESS;
|
|
}
|