21 lines
634 B
C
Vendored
21 lines
634 B
C
Vendored
/* Zeta API - Z/formats/data_model/LP64.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_LP64_H
|
|
#define Z_formats_data_model_LP64_H
|
|
|
|
#define Z_LP64_WIDTH_CHAR 8
|
|
#define Z_LP64_WIDTH_SHORT 16
|
|
#define Z_LP64_WIDTH_INT 32
|
|
#define Z_LP64_WIDTH_LONG 64
|
|
#define Z_LP64_WIDTH_LLONG 64
|
|
#define Z_LP64_WIDTH_SIZE 64
|
|
#define Z_LP64_WIDTH_POINTER 64
|
|
|
|
#endif /* Z_formats_data_model_LP64_H */
|