[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: lua-warnings.diff patch from Joerg
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Thu, 15 Mar 2012 15:41:36 -0300
> +++ src/ldblib.c
> +#include "llimits.h"
llimits.h is a private header file. ldblib.c is a library and as such
is supposed to use just the official API in lua.h and lauxlib.h.
> +++ src/llimits.h
> +#include <inttypes.h>
inttypes.h is not C89.
> +++ src/loadlib.c
> +#include "llimits.h"
Same as above.