summaryrefslogtreecommitdiff
path: root/lapi.c
diff options
context:
space:
mode:
Diffstat (limited to 'lapi.c')
-rw-r--r--lapi.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/lapi.c b/lapi.c
index aa628469..6652e7f4 100644
--- a/lapi.c
+++ b/lapi.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lapi.c,v 1.135 2001/03/02 17:27:50 roberto Exp roberto $ 2** $Id: lapi.c,v 1.136 2001/03/07 18:09:25 roberto Exp roberto $
3** Lua API 3** Lua API
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -7,6 +7,7 @@
7 7
8#include <string.h> 8#include <string.h>
9 9
10#define LUA_PRIVATE
10#include "lua.h" 11#include "lua.h"
11 12
12#include "lapi.h" 13#include "lapi.h"
@@ -22,8 +23,8 @@
22#include "lvm.h" 23#include "lvm.h"
23 24
24 25
25const l_char lua_ident[] = l_s("$Lua: ") LUA_VERSION l_s(" ") 26const l_char lua_ident[] = l_s("$Lua: ") l_s(LUA_VERSION) l_s(" ")
26 LUA_COPYRIGHT l_s(" $\n") l_s("$Authors: ") LUA_AUTHORS l_s(" $"); 27 l_s(LUA_COPYRIGHT) l_s(" $\n") l_s("$Authors: ") l_s(LUA_AUTHORS) l_s(" $");
27 28
28 29
29 30