|
| From: | Julián Calderón Almendros |
| Subject: | Problems with Compiling flex-2.5.24 with mingw gcc 3.2/msys 1.8 rc2 |
| Date: | Tue, 26 Nov 2002 14:49:46 +0100 |
We have added
#include "definitions.h"
that is the following text
// BEGIN "definitions.h"
typedef signed char int8_t;
typedef short int int16_t;
typedef long int int32_t;
typedef long long int int64_t;
typedef unsigned char uint8_t;
typedef unsigned short int uint16_t;
typedef unsigned long int uint32_t;
typedef unsigned long long int uint64_t;
// END "definitions.h"
in tables_shared.h line 71
in scan.c line 471
and compiles except the following error:
tables.o yytbl_write32 htonl
tables.o yytbl_write16 htons
undeclared in tables.c
htons
vnet = htons (v); line 306
htonl
vnet = htonl (v); line 287
Where is the declaration/definition of these functions?
It's wellcome any help for this compilation problem.
Thanks in advance.
| [Prev in Thread] | Current Thread | [Next in Thread] |