diff options
| author | lneto <lneto@NetBSD.org> | 2014-07-19 18:38:33 +0000 |
|---|---|---|
| committer | lneto <lneto@NetBSD.org> | 2014-07-19 18:38:33 +0000 |
| commit | c4b1eb35e827c43a0dcf41027c98aaedf46be036 (patch) | |
| tree | f80015954e9c51266af4f2e1c57f2134cbcc1d62 /sys/modules/lua/string.h | |
| parent | c6d74635a1d93d95a3770bd621dcd83ed33100c2 (diff) | |
lua: updated from 5.1 to 5.3 work3
* lua(1):
- changed lua_Integer to intmax_t
- updated distrib/sets/lists and etc/mtree
- updated bsd.lua.mk
- fixed bozohttpd (lua-bozo.c)
- compatibilized bindings: gpio, sqlite
* lua(4):
- removed floating-point and libc dependencies using '#ifndef _KERNEL'
- fixed division by zero and exponentiation
- libkern: added isalnum(), iscntrl(), isgraph(), isprint() and ispunct()
- acpica: removed isprint() from acnetbsd.h
- libc: moved strcspn.c, strpbrk.c and strspn.c to common
- removed stub headers
- compatibilized bindings: luapmf, luasystm
* reorganized luaconf.h
* updated doc/CHANGES and doc/RESPONSIBLE
Diffstat (limited to 'sys/modules/lua/string.h')
| -rw-r--r-- | sys/modules/lua/string.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/sys/modules/lua/string.h b/sys/modules/lua/string.h deleted file mode 100644 index f54ade99316..00000000000 --- a/sys/modules/lua/string.h +++ /dev/null @@ -1,21 +0,0 @@ -/* $NetBSD */ - -/* - * This file is a placeholder only, to allow Lua to be compiled from - * unchanged sources. - */ - -#include <sys/param.h> - -#ifndef _LUA_INCLUDE_STRING_ -#define _LUA_INCLUDE_STRING_ - -#define strcoll strcmp - -char *strncat(char *dst, const char *src, size_t n); -size_t strspn(const char *s, const char *charset); -size_t strcspn(const char *s, const char *charset); -char *strpbrk(const char *s, const char *charset); - -#endif - |
