diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2017-09-14 01:47:53 -0400 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2017-09-14 01:47:53 -0400 |
| commit | 75b1c71cb300b88625cd93ebf21d41361b65e2c7 (patch) | |
| tree | 9aaa94dece961979989e00d40a36a396fe5ea079 /src/softfloat.hpp | |
| parent | bb44e4b479c89f029fef44aac11a8202a457c1b2 (diff) | |
| parent | 14cda27b640651829b1d8af996392b650c7835a5 (diff) | |
| download | zig-75b1c71cb300b88625cd93ebf21d41361b65e2c7.tar.gz zig-75b1c71cb300b88625cd93ebf21d41361b65e2c7.zip | |
Merge branch 'soft-float'
Diffstat (limited to 'src/softfloat.hpp')
| -rw-r--r-- | src/softfloat.hpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/softfloat.hpp b/src/softfloat.hpp new file mode 100644 index 0000000000..4b227e9d7c --- /dev/null +++ b/src/softfloat.hpp @@ -0,0 +1,15 @@ +/* + * Copyright (c) 2017 Andrew Kelley + * + * This file is part of zig, which is MIT licensed. + * See http://opensource.org/licenses/MIT + */ + +#ifndef ZIG_SOFTFLOAT_HPP +#define ZIG_SOFTFLOAT_HPP + +extern "C" { +#include "softfloat.h" +} + +#endif |
