19 lines
449 B
C
Vendored
19 lines
449 B
C
Vendored
/* Zeta API - Z/macros/casting.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_macros_casting_H
|
|
#define Z_macros_casting_H
|
|
|
|
#ifdef __cplusplus
|
|
# define Z_CAST(type) type
|
|
#else
|
|
# define Z_CAST
|
|
#endif
|
|
|
|
#endif /* Z_macros_casting_H */
|