diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1994-12-13 13:59:16 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1994-12-13 13:59:16 -0200 |
commit | 2486d677c94479a42231f445d95f11924feec6a2 (patch) | |
tree | fb7088287cb09d7c233db626c6b3fa060143d07e | |
parent | 84b99d25ad8c2c669a9cfef13784ceb7b0632fe0 (diff) | |
download | lua-2486d677c94479a42231f445d95f11924feec6a2.tar.gz lua-2486d677c94479a42231f445d95f11924feec6a2.tar.bz2 lua-2486d677c94479a42231f445d95f11924feec6a2.zip |
no special treatment for C++ (this should be done in the C++ code)
-rw-r--r-- | lualib.h | 12 |
1 files changed, 1 insertions, 11 deletions
@@ -2,25 +2,15 @@ | |||
2 | ** Libraries to be used in LUA programs | 2 | ** Libraries to be used in LUA programs |
3 | ** Grupo de Tecnologia em Computacao Grafica | 3 | ** Grupo de Tecnologia em Computacao Grafica |
4 | ** TeCGraf - PUC-Rio | 4 | ** TeCGraf - PUC-Rio |
5 | ** $Id: lualib.h,v 1.1 1993/12/17 19:01:46 celes Exp celes $ | 5 | ** $Id: lualib.h,v 1.2 1994/08/24 15:29:02 celes Stab roberto $ |
6 | */ | 6 | */ |
7 | 7 | ||
8 | #ifndef lualib_h | 8 | #ifndef lualib_h |
9 | #define lualib_h | 9 | #define lualib_h |
10 | 10 | ||
11 | #ifdef __cplusplus | ||
12 | extern "C" | ||
13 | { | ||
14 | #endif | ||
15 | |||
16 | |||
17 | void iolib_open (void); | 11 | void iolib_open (void); |
18 | void strlib_open (void); | 12 | void strlib_open (void); |
19 | void mathlib_open (void); | 13 | void mathlib_open (void); |
20 | 14 | ||
21 | #ifdef __cplusplus | ||
22 | } | ||
23 | #endif | ||
24 | |||
25 | #endif | 15 | #endif |
26 | 16 | ||