Getting to the way it's supposed to be!
This commit is contained in:
12
modules/ufbx/misc/compiler_test.c
Normal file
12
modules/ufbx/misc/compiler_test.c
Normal file
@@ -0,0 +1,12 @@
|
||||
#include <stdio.h>
|
||||
#include <math.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
if (argc > 1) {
|
||||
float val = (float)atof(argv[1]);
|
||||
printf("sin(%.2f) = %.2f\n", val, sinf(val));
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user