diff options
-rw-r--r-- | lua.h | 50 |
1 files changed, 19 insertions, 31 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.132 2002/05/07 17:36:56 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.133 2002/05/16 18:39:46 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: info@lua.org | 5 | ** e-mail: info@lua.org |
@@ -321,37 +321,25 @@ LUA_API int lua_pushupvalues (lua_State *L); | |||
321 | 321 | ||
322 | 322 | ||
323 | /****************************************************************************** | 323 | /****************************************************************************** |
324 | * Copyright (C) 1994-2001 Tecgraf, PUC-Rio. All rights reserved. | 324 | * Copyright (C) 2002 Tecgraf, PUC-Rio. All rights reserved. |
325 | * | 325 | * |
326 | * Permission is hereby granted, without written agreement and without license | 326 | * Permission is hereby granted, free of charge, to any person obtaining |
327 | * or royalty fees, to use, copy, modify, and distribute this software and its | 327 | * a copy of this software and associated documentation files (the |
328 | * documentation for any purpose, including commercial applications, subject to | 328 | * "Software"), to deal in the Software without restriction, including |
329 | * without limitation the rights to use, copy, modify, merge, publish, | ||
330 | * distribute, sublicense, and/or sell copies of the Software, and to | ||
331 | * permit persons to whom the Software is furnished to do so, subject to | ||
329 | * the following conditions: | 332 | * the following conditions: |
330 | * | ||
331 | * - The above copyright notice and this permission notice shall appear in all | ||
332 | * copies or substantial portions of this software. | ||
333 | * | ||
334 | * - The origin of this software must not be misrepresented; you must not | ||
335 | * claim that you wrote the original software. If you use this software in a | ||
336 | * product, an acknowledgment in the product documentation would be greatly | ||
337 | * appreciated (but it is not required). | ||
338 | * | ||
339 | * - Altered source versions must be plainly marked as such, and must not be | ||
340 | * misrepresented as being the original software. | ||
341 | * | ||
342 | * The authors specifically disclaim any warranties, including, but not limited | ||
343 | * to, the implied warranties of merchantability and fitness for a particular | ||
344 | * purpose. The software provided hereunder is on an "as is" basis, and the | ||
345 | * authors have no obligation to provide maintenance, support, updates, | ||
346 | * enhancements, or modifications. In no event shall Tecgraf, PUC-Rio, or the | ||
347 | * authors be held liable to any party for direct, indirect, special, | ||
348 | * incidental, or consequential damages arising out of the use of this software | ||
349 | * and its documentation. | ||
350 | * | ||
351 | * The Lua language and this implementation have been entirely designed and | ||
352 | * written by Waldemar Celes Filho, Roberto Ierusalimschy and | ||
353 | * Luiz Henrique de Figueiredo at Tecgraf, PUC-Rio. | ||
354 | * | 333 | * |
355 | * This implementation contains no third-party code. | 334 | * The above copyright notice and this permission notice shall be |
335 | * included in all copies or substantial portions of the Software. | ||
336 | * | ||
337 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
338 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
339 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | ||
340 | * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY | ||
341 | * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, | ||
342 | * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE | ||
343 | * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
356 | ******************************************************************************/ | 344 | ******************************************************************************/ |
357 | 345 | ||