Add initial snapshot of runtime crt.



git-svn-id: svn+ssh://svn.code.sf.net/p/mingw-w64/code/trunk@2 4407c894-4637-0410-b4f5-ada5f102cad1
diff --git a/mingw-w64-crt/math/sinhf.c b/mingw-w64-crt/math/sinhf.c
new file mode 100755
index 0000000..e770cb7
--- /dev/null
+++ b/mingw-w64-crt/math/sinhf.c
@@ -0,0 +1,3 @@
+#include <math.h>

+float sinhf (float x)

+  {return (float) sinh (x);}