Files
revng-revng/tests/Runtime/printf.c
T
Alessandro Di Federico 047ae0d4d8 Apply clang-format globally
This commit applies our `clang-format` rules globally. From now on, all
commits should respect our configuration file.

Pretty large change.
2018-09-21 20:08:45 +02:00

12 lines
245 B
C

/*
* This file is distributed under the MIT License. See LICENSE.md for details.
*/
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]) {
printf("%d %f %f\n", argc, (float) argc, (float) argc);
return EXIT_SUCCESS;
}