diff options
author | Michael Forney <mforney@mforney.org> | 2019-02-11 18:43:18 -0800 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-02-12 01:55:14 -0800 |
commit | eddc4693e49f70cd214b7645cb9fce54a89fbb6c (patch) | |
tree | fa1b640f49cde25e323aa0629aed64c064da930e /tests/uint32-to-float.c |
Initial import
Diffstat (limited to 'tests/uint32-to-float.c')
-rw-r--r-- | tests/uint32-to-float.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/uint32-to-float.c b/tests/uint32-to-float.c new file mode 100644 index 0000000..0a045be --- /dev/null +++ b/tests/uint32-to-float.c @@ -0,0 +1,4 @@ +unsigned g(void); +float f(void) { + return g(); +} |