Ver Fonte

new name for llimits.h

Roberto Ierusalimschy há 25 anos atrás
pai
commit
54633d7c7d
3 ficheiros alterados com 8 adições e 8 exclusões
  1. 3 3
      llimits.h
  2. 2 2
      lobject.h
  3. 3 3
      lopcodes.h

+ 3 - 3
llimits.h

@@ -1,11 +1,11 @@
 /*
 /*
-** $Id: $
+** $Id: llimits.h,v 1.1 2000/03/24 17:26:08 roberto Exp roberto $
 ** Limits, basic types, and some other "instalation-dependent" definitions
 ** Limits, basic types, and some other "instalation-dependent" definitions
 ** See Copyright Notice in lua.h
 ** See Copyright Notice in lua.h
 */
 */
 
 
-#ifndef llims_h
-#define llims_h
+#ifndef llimits_h
+#define llimits_h
 
 
 
 
 #include <limits.h>
 #include <limits.h>

+ 2 - 2
lobject.h

@@ -1,5 +1,5 @@
 /*
 /*
-** $Id: lobject.h,v 1.53 2000/03/20 19:14:54 roberto Exp roberto $
+** $Id: lobject.h,v 1.54 2000/03/24 17:26:08 roberto Exp roberto $
 ** Type definitions for Lua objects
 ** Type definitions for Lua objects
 ** See Copyright Notice in lua.h
 ** See Copyright Notice in lua.h
 */
 */
@@ -8,7 +8,7 @@
 #define lobject_h
 #define lobject_h
 
 
 
 
-#include "llims.h"
+#include "llimits.h"
 #include "lua.h"
 #include "lua.h"
 
 
 
 

+ 3 - 3
lopcodes.h

@@ -1,5 +1,5 @@
 /*
 /*
-** $Id: lopcodes.h,v 1.50 2000/03/16 18:03:09 roberto Exp roberto $
+** $Id: lopcodes.h,v 1.51 2000/03/24 17:26:08 roberto Exp roberto $
 ** Opcodes for Lua virtual machine
 ** Opcodes for Lua virtual machine
 ** See Copyright Notice in lua.h
 ** See Copyright Notice in lua.h
 */
 */
@@ -7,7 +7,7 @@
 #ifndef lopcodes_h
 #ifndef lopcodes_h
 #define lopcodes_h
 #define lopcodes_h
 
 
-#include "llims.h"
+#include "llimits.h"
 
 
 
 
 /*===========================================================================
 /*===========================================================================
@@ -24,7 +24,7 @@
   The signed argument is represented in excess 2^K; that is, the number
   The signed argument is represented in excess 2^K; that is, the number
   value is the usigned value minus 2^K.
   value is the usigned value minus 2^K.
 
 
-  The size of each argument is defined in `llims.h'. The usual is an
+  The size of each argument is defined in `llimits.h'. The usual is an
   instruction with 32 bits, U and S arguments with 26 bits (32-6), B
   instruction with 32 bits, U and S arguments with 26 bits (32-6), B
   argument with 9 bits, and A argument with 17 bits (32-6-9). For small
   argument with 9 bits, and A argument with 17 bits (32-6-9). For small
   instalations, the instruction size can be 16, so U and S have 10 bits,
   instalations, the instruction size can be 16, so U and S have 10 bits,