• R/O
  • SSH

main: 提交

Main development repository for Aotus.


Commit MetaInfo

修訂e14d776b6ba7502a7d0dcad363ea5c22ec9fcdb6 (tree)
時間2019-07-16 20:39:17
作者Harald Klimach <harald.klimach@uni-...>
CommiterHarald Klimach

Log Message

Added individual copyright headers to each source file in LuaFortran.

Change Summary

差異

diff -r f4a50eed7ddc -r e14d776b6ba7 LuaFortran/COPYRIGHT
--- a/LuaFortran/COPYRIGHT Mon Apr 29 10:14:13 2019 +0200
+++ b/LuaFortran/COPYRIGHT Tue Jul 16 13:39:17 2019 +0200
@@ -1,6 +1,7 @@
11 This LuaFortran interface is provided by the German Research School for
22 Simulation Sciences GmbH, Aachen and licensed under the same terms as Lua
33 which is available under the MIT license reproduced below.
4+See individual files for respective contributors.
45
56 See also:
67 http://www.lua.org/license.html.
@@ -9,7 +10,7 @@
910
1011 Copyright (C) 2011-2013 German Research School for Simulation Sciences GmbH,
1112 Aachen and others.
12- 2015 University of Siegen.
13+ 2015-208 University of Siegen and others.
1314
1415 Permission is hereby granted, free of charge, to any person obtaining a copy
1516 of this software and associated documentation files (the "Software"), to deal
diff -r f4a50eed7ddc -r e14d776b6ba7 LuaFortran/Makefile.inc
--- a/LuaFortran/Makefile.inc Mon Apr 29 10:14:13 2019 +0200
+++ b/LuaFortran/Makefile.inc Tue Jul 16 13:39:17 2019 +0200
@@ -1,3 +1,24 @@
1+# Copyright (c) 2017 Nick Papior <nickpapior@gmail.com>
2+#
3+# Permission is hereby granted, free of charge, to any person obtaining a copy
4+# of this software and associated documentation files (the "Software"), to deal
5+# in the Software without restriction, including without limitation the rights
6+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+# copies of the Software, and to permit persons to whom the Software is
8+# furnished to do so, subject to the following conditions:
9+#
10+# The above copyright notice and this permission notice shall be included in
11+# all copies or substantial portions of the Software.
12+#
13+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
16+# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
17+# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
18+# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
19+# OR OTHER DEALINGS IN THE SOFTWARE.
20+# **************************************************************************** #
21+
122 LuaF_DIR = $(TOP_DIR)/LuaFortran
223
324 # Append the LuaFortran directory
diff -r f4a50eed7ddc -r e14d776b6ba7 LuaFortran/dump_lua_fif_module.f90
--- a/LuaFortran/dump_lua_fif_module.f90 Mon Apr 29 10:14:13 2019 +0200
+++ b/LuaFortran/dump_lua_fif_module.f90 Tue Jul 16 13:39:17 2019 +0200
@@ -1,3 +1,27 @@
1+! Copyright (c) 2012 Harald Klimach <harald@klimachs.de>
2+!
3+! Parts of this file were written by Harald Klimach for
4+! German Research School of Simulation Sciences.
5+!
6+! Permission is hereby granted, free of charge, to any person obtaining a copy
7+! of this software and associated documentation files (the "Software"), to deal
8+! in the Software without restriction, including without limitation the rights
9+! to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+! copies of the Software, and to permit persons to whom the Software is
11+! furnished to do so, subject to the following conditions:
12+!
13+! The above copyright notice and this permission notice shall be included in
14+! all copies or substantial portions of the Software.
15+!
16+! THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+! IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+! FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19+! IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
20+! DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21+! OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
22+! OR OTHER DEALINGS IN THE SOFTWARE.
23+! **************************************************************************** !
24+
125 !> This module provides a Fortran interface to the Lua dump routine.
226 module dump_lua_fif_module
327 use, intrinsic :: iso_c_binding
diff -r f4a50eed7ddc -r e14d776b6ba7 LuaFortran/examples/Makefile
--- a/LuaFortran/examples/Makefile Mon Apr 29 10:14:13 2019 +0200
+++ b/LuaFortran/examples/Makefile Tue Jul 16 13:39:17 2019 +0200
@@ -1,3 +1,27 @@
1+# Copyright (c) 2011 Harald Klimach <harald@klimachs.de>
2+#
3+# Parts of this file were written by Harald Klimach for German Resarch
4+# School of Simulation Sciences.
5+#
6+# Permission is hereby granted, free of charge, to any person obtaining a copy
7+# of this software and associated documentation files (the "Software"), to deal
8+# in the Software without restriction, including without limitation the rights
9+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+# copies of the Software, and to permit persons to whom the Software is
11+# furnished to do so, subject to the following conditions:
12+#
13+# The above copyright notice and this permission notice shall be included in
14+# all copies or substantial portions of the Software.
15+#
16+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19+# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
20+# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21+# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
22+# OR OTHER DEALINGS IN THE SOFTWARE.
23+# **************************************************************************** #
24+
125 FC=gfortran
226 FFLAGS=
327 FLULIB=-L.. -lflu
diff -r f4a50eed7ddc -r e14d776b6ba7 LuaFortran/examples/config.test
--- a/LuaFortran/examples/config.test Mon Apr 29 10:14:13 2019 +0200
+++ b/LuaFortran/examples/config.test Tue Jul 16 13:39:17 2019 +0200
@@ -1,3 +1,27 @@
1+-- Copyright (c) 2011 Harald Klimach <harald@klimachs.de>
2+--
3+-- Parts of this file were written by Harald Klimach for German Resarch
4+-- School of Simulation Sciences.
5+--
6+-- Permission is hereby granted, free of charge, to any person obtaining a copy
7+-- of this software and associated documentation files (the "Software"), to deal
8+-- in the Software without restriction, including without limitation the rights
9+-- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+-- copies of the Software, and to permit persons to whom the Software is
11+-- furnished to do so, subject to the following conditions:
12+--
13+-- The above copyright notice and this permission notice shall be included in
14+-- all copies or substantial portions of the Software.
15+--
16+-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19+-- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
20+-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21+-- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
22+-- OR OTHER DEALINGS IN THE SOFTWARE.
23+-- ************************************************************************** --
24+
125 -- configuration file for program `pp'
226 -- define window size
327
diff -r f4a50eed7ddc -r e14d776b6ba7 LuaFortran/examples/test.f90
--- a/LuaFortran/examples/test.f90 Mon Apr 29 10:14:13 2019 +0200
+++ b/LuaFortran/examples/test.f90 Tue Jul 16 13:39:17 2019 +0200
@@ -1,3 +1,28 @@
1+! Copyright (c) 2011, 2016 Harald Klimach <harald@klimachs.de>
2+!
3+! Parts of this file were written by Harald Klimach for
4+! German Research School of Simulation Sciences and University of
5+! Siegen.
6+!
7+! Permission is hereby granted, free of charge, to any person obtaining a copy
8+! of this software and associated documentation files (the "Software"), to deal
9+! in the Software without restriction, including without limitation the rights
10+! to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11+! copies of the Software, and to permit persons to whom the Software is
12+! furnished to do so, subject to the following conditions:
13+!
14+! The above copyright notice and this permission notice shall be included in
15+! all copies or substantial portions of the Software.
16+!
17+! THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+! IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+! FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20+! IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
21+! DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
22+! OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
23+! OR OTHER DEALINGS IN THE SOFTWARE.
24+! **************************************************************************** !
25+
126 program test
227 use flu_binding
328
diff -r f4a50eed7ddc -r e14d776b6ba7 LuaFortran/flu_binding.f90
--- a/LuaFortran/flu_binding.f90 Mon Apr 29 10:14:13 2019 +0200
+++ b/LuaFortran/flu_binding.f90 Tue Jul 16 13:39:17 2019 +0200
@@ -1,3 +1,34 @@
1+! Copyright (c) 2011-2013, 2015-2016, 2018 Harald Klimach <harald@klimachs.de>
2+! Copyright (c) 2012, 2014 Kannan Masilamani <kannan.masilamani@uni-siegen.de>
3+! Copyright (c) 2012-2013 James Spencer <j.spencer@imperial.ac.uk>
4+! Copyright (c) 2014 dgloger
5+! Copyright (c) 2015 Peter Vitt <peter.vitt2@uni-siegen.de>
6+! Copyright (c) 2016 Ruth Franklin
7+!
8+! Parts of this file were written by Harald Klimach for
9+! German Research School of Simulation Sciences
10+! Parts of this file were written by Harald Klimach, Kannan Masilamani and
11+! Peter Vitt for University of Siegen.
12+!
13+! Permission is hereby granted, free of charge, to any person obtaining a copy
14+! of this software and associated documentation files (the "Software"), to deal
15+! in the Software without restriction, including without limitation the rights
16+! to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
17+! copies of the Software, and to permit persons to whom the Software is
18+! furnished to do so, subject to the following conditions:
19+!
20+! The above copyright notice and this permission notice shall be included in
21+! all copies or substantial portions of the Software.
22+!
23+! THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24+! IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25+! FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
26+! IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
27+! DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
28+! OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
29+! OR OTHER DEALINGS IN THE SOFTWARE.
30+! **************************************************************************** !
31+
132 !> This module provides the Fortran Lua interface.
233 !!
334 !! It defines a flu_state which encapsulates the
@@ -109,7 +140,7 @@
109140 abstract interface
110141 function lua_Function(s) result(val) bind(c)
111142 use, intrinsic :: iso_c_binding
112- integer(c_int) :: val
143+ integer(c_int) :: val
113144 type(c_ptr), value :: s
114145 end function lua_Function
115146 end interface
@@ -633,19 +664,19 @@
633664 c_index = int(index, kind=c_int)
634665 luat = lua_type(L%state, c_index)
635666 flut = int(luat)
636-
667+
637668 end function flu_type
638669
639670
640671 subroutine flu_pushcclosure(L, fn, n)
641- type(flu_State), value :: L
672+ type(flu_State), value :: L
642673 procedure(lua_Function) :: fn
643- integer :: n
674+ integer :: n
644675
645676 integer(c_int) :: c_n
646677 type(c_funptr) :: c_fn
647678
648- c_n = n
679+ c_n = n
649680 c_fn = c_funloc(fn)
650681
651682 call lua_pushcclosure(L%state, c_fn, c_n)
@@ -653,7 +684,7 @@
653684 end subroutine flu_pushcclosure
654685
655686
656- subroutine flu_register(L, fn_name, fn)
687+ subroutine flu_register(L, fn_name, fn)
657688
658689 ! lua_register is defined as a macro in lua.h and isn't accessible from
659690 ! Fortran.
@@ -686,7 +717,7 @@
686717
687718
688719 ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !
689- ! Wrapper routines for the auxiliary library
720+ ! Wrapper routines for the auxiliary library
690721 ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !
691722
692723 function fluL_loadfile(L, filename) result(errcode)
@@ -752,7 +783,7 @@
752783
753784 subroutine fluL_openlibs(L)
754785 type(flu_State) :: L
755-
786+
756787 if (.not. L%opened_libs) then
757788 call luaL_openlibs(L%state)
758789 L%opened_libs = .true.
@@ -799,7 +830,7 @@
799830
800831
801832 ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !
802- ! Routines for using existing Lua states with
833+ ! Routines for using existing Lua states with
803834 ! flu_binding
804835 ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !
805836
diff -r f4a50eed7ddc -r e14d776b6ba7 LuaFortran/flu_kinds_module.f90
--- a/LuaFortran/flu_kinds_module.f90 Mon Apr 29 10:14:13 2019 +0200
+++ b/LuaFortran/flu_kinds_module.f90 Tue Jul 16 13:39:17 2019 +0200
@@ -1,7 +1,26 @@
1-! Copyright (C) 2011-2013 German Research School for Simulation Sciences GmbH,
2-! Aachen and others.
3-! 2013-2018 University of Siegen
4-! Please see the COPYRIGHT file in this directory for details.
1+! Copyright (c) 2016, 2018 Harald Klimach <harald@klimachs.de>
2+!
3+! Parts of this file were written by Harald Klimach for University of
4+! Siegen.
5+!
6+! Permission is hereby granted, free of charge, to any person obtaining a copy
7+! of this software and associated documentation files (the "Software"), to deal
8+! in the Software without restriction, including without limitation the rights
9+! to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+! copies of the Software, and to permit persons to whom the Software is
11+! furnished to do so, subject to the following conditions:
12+!
13+! The above copyright notice and this permission notice shall be included in
14+! all copies or substantial portions of the Software.
15+!
16+! THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+! IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+! FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19+! IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
20+! DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21+! OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
22+! OR OTHER DEALINGS IN THE SOFTWARE.
23+! **************************************************************************** !
524
625 !> Global definitions of some handy kind declarations
726 !! with the help of the intrinsic selected_*_kind
diff -r f4a50eed7ddc -r e14d776b6ba7 LuaFortran/lua_fif.f90
--- a/LuaFortran/lua_fif.f90 Mon Apr 29 10:14:13 2019 +0200
+++ b/LuaFortran/lua_fif.f90 Tue Jul 16 13:39:17 2019 +0200
@@ -1,3 +1,33 @@
1+! Copyright (c) 2011-2012, 2015-2016 Harald Klimach <harald@klimachs.de>
2+! Copyright (c) 2012-2013 James Spencer <j.spencer@imperial.ac.uk>
3+! Copyright (c) 2015 Peter Vitt <peter.vitt2@uni-siegen.de>
4+! Copyright (c) 2016 Ruth Franklin
5+!
6+! Parts of this file were written by Harald Klimach for
7+! German Research School of Simulation Sciences and University of
8+! Siegen.
9+! Parts of this file were written by Peter Vitt for University of
10+! Siegen.
11+!
12+! Permission is hereby granted, free of charge, to any person obtaining a copy
13+! of this software and associated documentation files (the "Software"), to deal
14+! in the Software without restriction, including without limitation the rights
15+! to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16+! copies of the Software, and to permit persons to whom the Software is
17+! furnished to do so, subject to the following conditions:
18+!
19+! The above copyright notice and this permission notice shall be included in
20+! all copies or substantial portions of the Software.
21+!
22+! THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23+! IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24+! FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
25+! IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
26+! DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
27+! OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
28+! OR OTHER DEALINGS IN THE SOFTWARE.
29+! **************************************************************************** !
30+
131 !> This module provides a direct translation of some
232 !! Lua 5.3.2
333 !! C-Interfaces to Fortran 2003 interfaces using the
diff -r f4a50eed7ddc -r e14d776b6ba7 LuaFortran/lua_parameters.f90
--- a/LuaFortran/lua_parameters.f90 Mon Apr 29 10:14:13 2019 +0200
+++ b/LuaFortran/lua_parameters.f90 Tue Jul 16 13:39:17 2019 +0200
@@ -1,3 +1,30 @@
1+! Copyright (c) 2011-2012, 2016 Harald Klimach <harald@klimachs.de>
2+! Copyright (c) 2012 Kannan Masilamani <k.masilamani@grs-sim.de>
3+! Copyright (c) 2013 James Spencer <j.spencer@imperial.ac.uk>
4+!
5+! Parts of this file were written by Harald Klimach for
6+! German Research School of Simulation Sciences and University of
7+! Siegen.
8+!
9+! Permission is hereby granted, free of charge, to any person obtaining a copy
10+! of this software and associated documentation files (the "Software"), to deal
11+! in the Software without restriction, including without limitation the rights
12+! to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13+! copies of the Software, and to permit persons to whom the Software is
14+! furnished to do so, subject to the following conditions:
15+!
16+! The above copyright notice and this permission notice shall be included in
17+! all copies or substantial portions of the Software.
18+!
19+! THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20+! IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21+! FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
22+! IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
23+! DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
24+! OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
25+! OR OTHER DEALINGS IN THE SOFTWARE.
26+! **************************************************************************** !
27+
128 !> This module provides some parameters defined in the
229 !! Lua header file that are needed in the wrapper
330 !! functions for the Fortran interface.
diff -r f4a50eed7ddc -r e14d776b6ba7 LuaFortran/wrap_lua_dump.c
--- a/LuaFortran/wrap_lua_dump.c Mon Apr 29 10:14:13 2019 +0200
+++ b/LuaFortran/wrap_lua_dump.c Tue Jul 16 13:39:17 2019 +0200
@@ -1,3 +1,28 @@
1+// Copyright (c) 2012-2013, 2015 Harald Klimach <harald@klimachs.de>
2+//
3+// Parts of this file were written by Harald Klimach for
4+// German Research School of Simulation Sciences and University of
5+// Siegen.
6+//
7+// Permission is hereby granted, free of charge, to any person obtaining a copy
8+// of this software and associated documentation files (the "Software"), to deal
9+// in the Software without restriction, including without limitation the rights
10+// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11+// copies of the Software, and to permit persons to whom the Software is
12+// furnished to do so, subject to the following conditions:
13+//
14+// The above copyright notice and this permission notice shall be included in
15+// all copies or substantial portions of the Software.
16+//
17+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20+// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
21+// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
22+// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
23+// OR OTHER DEALINGS IN THE SOFTWARE.
24+// *************************************************************************** !
25+
126 #include <stdlib.h>
227 #include "lua.h"
328
Show on old repository browser