diff options
author | Gwenolé Beauchesne <gbeauchesne@mandriva.org> | 2003-08-19 08:58:36 +0000 |
---|---|---|
committer | Gwenolé Beauchesne <gbeauchesne@mandriva.org> | 2003-08-19 08:58:36 +0000 |
commit | 9924c949b21514005b1c12dd0262fe2db6574207 (patch) | |
tree | 77d56b56396dbc77f5b8a85fde4bfa54e4db7189 /mdk-stage1 | |
parent | 231b81e8a09040c9a9cc87e9e5507acbcfa50a8b (diff) | |
download | drakx-9924c949b21514005b1c12dd0262fe2db6574207.tar drakx-9924c949b21514005b1c12dd0262fe2db6574207.tar.gz drakx-9924c949b21514005b1c12dd0262fe2db6574207.tar.bz2 drakx-9924c949b21514005b1c12dd0262fe2db6574207.tar.xz drakx-9924c949b21514005b1c12dd0262fe2db6574207.zip |
Really match dietlibc 0.22 for <sys/types.h> u_long definition though
it ought to be uint32_t.
Diffstat (limited to 'mdk-stage1')
-rw-r--r-- | mdk-stage1/dietlibc/include/sys/types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdk-stage1/dietlibc/include/sys/types.h b/mdk-stage1/dietlibc/include/sys/types.h index 253e030c5..a3d2bf4be 100644 --- a/mdk-stage1/dietlibc/include/sys/types.h +++ b/mdk-stage1/dietlibc/include/sys/types.h @@ -110,7 +110,7 @@ typedef uint32_t n_time; typedef uint32_t n_long; # ifndef __dietlibc_u_char_defined typedef char* caddr_t; -typedef unsigned long u_long; +typedef uint32_t u_long; typedef unsigned char u_char; typedef unsigned short u_short; typedef unsigned int u_int; |