21 lines
645 B
C
Vendored
21 lines
645 B
C
Vendored
/* Zeta API - Z/formats/data_model/ILP32.h
|
|
______ ______________ ___
|
|
|__ / | ___|___ ___|/ \
|
|
/ /__| __| | | / - \
|
|
/______|_____| |__| /__/ \__\
|
|
Copyright (C) 2006-2024 Manuel Sainz de Baranda y Goñi.
|
|
Released under the terms of the GNU Lesser General Public License v3. */
|
|
|
|
#ifndef Z_formats_data_model_ILP32_H
|
|
#define Z_formats_data_model_ILP32_H
|
|
|
|
#define Z_ILP32_WIDTH_CHAR 8
|
|
#define Z_ILP32_WIDTH_SHORT 16
|
|
#define Z_ILP32_WIDTH_INT 32
|
|
#define Z_ILP32_WIDTH_LONG 32
|
|
#define Z_ILP32_WIDTH_LLONG 64
|
|
#define Z_ILP32_WIDTH_SIZE 32
|
|
#define Z_ILP32_WIDTH_POINTER 32
|
|
|
|
#endif /* Z_formats_data_model_ILP32_H */
|