added include for 'lprefix.h', for stuff that must be added before

any other header file
This commit is contained in:
Roberto Ierusalimschy
2014-11-02 17:19:04 -02:00
parent c25072a246
commit 28fdbcf393
35 changed files with 199 additions and 146 deletions

View File

@@ -1,17 +1,19 @@
/*
** $Id: lutf8lib.c,v 1.11 2014/10/01 11:52:33 roberto Exp roberto $
** $Id: lutf8lib.c,v 1.12 2014/10/15 14:31:10 roberto Exp roberto $
** Standard library for UTF-8 manipulation
** See Copyright Notice in lua.h
*/
#define lutf8lib_c
#define LUA_LIB
#include "lprefix.h"
#include <assert.h>
#include <stdlib.h>
#include <string.h>
#define lutf8lib_c
#define LUA_LIB
#include "lua.h"
#include "lauxlib.h"