From 1f01998516ca5f702af3e3655f6c38bfc581aae3 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 17 Feb 2000 16:30:36 -0200 Subject: nobody uses memmove any more. --- lobject.h | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'lobject.h') diff --git a/lobject.h b/lobject.h index 0236aac8..87afb761 100644 --- a/lobject.h +++ b/lobject.h @@ -1,5 +1,5 @@ /* -** $Id: lobject.h,v 1.46 2000/02/11 16:52:54 roberto Exp roberto $ +** $Id: lobject.h,v 1.47 2000/02/14 16:51:08 roberto Exp roberto $ ** Type definitions for Lua objects ** See Copyright Notice in lua.h */ @@ -237,13 +237,5 @@ int luaO_equalval (const TObject *t1, const TObject *t2); int luaO_redimension (lua_State *L, int oldsize); int luaO_str2d (const char *s, real *result); -#ifdef OLD_ANSI -void luaO_memup (void *dest, void *src, int size); -void luaO_memdown (void *dest, void *src, int size); -#else -#include -#define luaO_memup(d,s,n) memmove(d,s,n) -#define luaO_memdown(d,s,n) memmove(d,s,n) -#endif #endif -- cgit v1.2.3-55-g6feb