Bläddra i källkod

+ added math.inc and set.inc

git-svn-id: branches/wasm@48057 -
nickysn 4 år sedan
förälder
incheckning
04c14500a7
3 ändrade filer med 33 tillägg och 0 borttagningar
  1. 2 0
      .gitattributes
  2. 16 0
      rtl/wasm32/math.inc
  3. 15 0
      rtl/wasm32/set.inc

+ 2 - 0
.gitattributes

@@ -12195,6 +12195,8 @@ rtl/wasi/sysosh.inc svneol=native#text/plain
 rtl/wasi/system.pp svneol=native#text/plain
 rtl/wasm32/cpuh.inc svneol=native#text/plain
 rtl/wasm32/makefile.cpu svneol=native#text/plain
+rtl/wasm32/math.inc svneol=native#text/plain
+rtl/wasm32/set.inc svneol=native#text/plain
 rtl/wasm32/setjumph.inc svneol=native#text/plain
 rtl/wasm32/wasm32.inc svneol=native#text/plain
 rtl/watcom/Makefile svneol=native#text/plain

+ 16 - 0
rtl/wasm32/math.inc

@@ -0,0 +1,16 @@
+{
+
+    This file is part of the Free Pascal run time library.
+    Copyright (c) 2003 by the Free Pascal development team.
+
+    Implementation of mathematical Routines (for extended type)
+
+    See the file COPYING.FPC, included in this distribution,
+    for details about the copyright.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
+ **********************************************************************}
+

+ 15 - 0
rtl/wasm32/set.inc

@@ -0,0 +1,15 @@
+{
+
+    This file is part of the Free Pascal run time library.
+    Copyright (c) 2003 by the Free Pascal development team.
+
+    Include file with set operations called by the compiler
+
+    See the file COPYING.FPC, included in this distribution,
+    for details about the copyright.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
+ **********************************************************************}