mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
Alias some types not known for Solaris
This commit is contained in:
parent
17c1826356
commit
7442e41421
@ -87,6 +87,12 @@
|
|||||||
#define STR_ENDSTRING(line,tbl) \
|
#define STR_ENDSTRING(line,tbl) \
|
||||||
((line)[0] == (tbl).str_delim && (line)[1] == '\n')
|
((line)[0] == (tbl).str_delim && (line)[1] == '\n')
|
||||||
|
|
||||||
|
/* these types are BSD specific, but exists on Linux too */
|
||||||
|
#if defined(sun) || defined(__sun)
|
||||||
|
typedef unsigned int u_int32_t;
|
||||||
|
typedef unsigned char u_int8_t;
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef struct { /* information table */
|
typedef struct { /* information table */
|
||||||
#define VERSION 2
|
#define VERSION 2
|
||||||
u_int32_t str_version; /* version number */
|
u_int32_t str_version; /* version number */
|
||||||
|
Loading…
Reference in New Issue
Block a user