aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-06-06 18:05:52 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-06-06 18:05:52 -0300
commit0845e73b6a374bd8eb2969a91ade56cb0407b929 (patch)
tree484c4d268a7635613faae741ccd853a8f3332423 /lua.h
parent7dfa9520911e147be04a0dc04b21bcb01e045f76 (diff)
downloadlua-0845e73b6a374bd8eb2969a91ade56cb0407b929.tar.gz
lua-0845e73b6a374bd8eb2969a91ade56cb0407b929.tar.bz2
lua-0845e73b6a374bd8eb2969a91ade56cb0407b929.zip
new copyright notice
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h72
1 files changed, 38 insertions, 34 deletions
diff --git a/lua.h b/lua.h
index 73eede89..66d0f1dd 100644
--- a/lua.h
+++ b/lua.h
@@ -1,44 +1,12 @@
1/* 1/*
2** $Id: lua.h,v 1.19 1998/06/02 20:37:04 roberto Exp roberto $ 2** $Id: lua.h,v 1.20 1998/06/05 22:17:44 roberto Exp roberto $
3** Lua - An Extensible Extension Language 3** Lua - An Extensible Extension Language
4** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil 4** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil
5** e-mail: lua@tecgraf.puc-rio.br 5** e-mail: lua@tecgraf.puc-rio.br
6** www: http://www.tecgraf.puc-rio.br/lua/ 6** www: http://www.tecgraf.puc-rio.br/lua/
7** See Copyright Notice at the end of this file
7*/ 8*/
8 9
9/*********************************************************************
10* Copyright (c) 1994-1998 TeCGraf, PUC-Rio.
11* Written by Waldemar Celes Filho, Roberto Ierusalimschy and
12* Luiz Henrique de Figueiredo.
13* All rights reserved.
14*
15* Permission is hereby granted, without written agreement and with­
16* out license or royalty fees, to use, copy, modify, and distribute
17* this software and its documentation for any purpose, subject to
18* the following conditions:
19*
20* The above copyright notice and this permission notice shall ap­
21* pear in all copies or substantial portions of this software.
22*
23* The name "Lua" cannot be used for any modified form of this soft­
24* ware that does not originate from the authors. Nevertheless, the
25* name "Lua" may and should be used to designate the language im­
26* plemented and described in this package, even if embedded in any
27* other system, as long as its syntax and semantics remain un­
28* changed.
29*
30* The authors specifically disclaim any warranties, including, but
31* not limited to, the implied warranties of merchantability and
32* fitness for a particular purpose. The software provided hereunder
33* is on an "as is" basis, and the authors have no obligation to
34* provide maintenance, support, updates, enhancements, or modifica­
35* tions. In no event shall TeCGraf, PUC-Rio, or the authors be li­
36* able to any party for direct, indirect, special, incidental, or
37* consequential damages arising out of the use of this software and
38* its documentation.
39*********************************************************************/
40
41
42 10
43#ifndef lua_h 11#ifndef lua_h
44#define lua_h 12#define lua_h
@@ -190,3 +158,39 @@ lua_Object lua_setfallback (char *event, lua_CFunction fallback);
190#endif 158#endif
191 159
192#endif 160#endif
161
162
163
164/******************************************************************************
165* Copyright (c) 1994-1998 TeCGraf, PUC-Rio. All rights reserved.
166*
167* Permission is hereby granted, without written agreement and without license
168* or royalty fees, to use, copy, modify, and distribute this software and its
169* documentation for any purpose, including commercial applications, subject to
170* the following conditions:
171*
172* - The above copyright notice and this permission notice shall appear in all
173* copies or substantial portions of this software.
174*
175* - The origin of this software must not be misrepresented; you must not
176* claim that you wrote the original software. If you use this software in a
177* product, an acknowledgment in the product documentation would be greatly
178* appreciated (but it is not required).
179*
180* - Altered source versions must be plainly marked as such, and must not be
181* misrepresented as being the original software.
182*
183* The authors specifically disclaim any warranties, including, but not limited
184* to, the implied warranties of merchantability and fitness for a particular
185* purpose. The software provided hereunder is on an "as is" basis, and the
186* authors have no obligation to provide maintenance, support, updates,
187* enhancements, or modifications. In no event shall TeCGraf, PUC-Rio, or the
188* authors be held liable to any party for direct, indirect, special,
189* incidental, or consequential damages arising out of the use of this software
190* and its documentation.
191*
192* The Lua language and this implementation have been entirely designed and
193* written by Waldemar Celes Filho, Roberto Ierusalimschy and
194* Luiz Henrique de Figueiredo at TeCGraf, PUC-Rio.
195* This implementation contains no third-party code.
196******************************************************************************/