mirror of
https://github.com/Z3Prover/z3
synced 2025-06-20 12:53:38 +00:00
They break the build with recent glibc versions and apparently noone is using them. Signed-off-by: Nuno Lopes <nlopes@microsoft.com>
32 lines
506 B
C
32 lines
506 B
C
|
|
/*++
|
|
Copyright (c) 2015 Microsoft Corporation
|
|
|
|
--*/
|
|
|
|
#ifndef Z3_bool_opt
|
|
#define Z3_bool_opt Z3_bool
|
|
#endif
|
|
|
|
#ifndef Z3_API
|
|
# ifdef __GNUC__
|
|
# define Z3_API __attribute__ ((visibility ("default")))
|
|
# else
|
|
# define Z3_API
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef DEFINE_TYPE
|
|
#define DEFINE_TYPE(T) typedef struct _ ## T *T
|
|
#endif
|
|
|
|
#ifndef DEFINE_VOID
|
|
#define DEFINE_VOID(T) typedef void* T
|
|
#endif
|
|
|
|
#ifndef BEGIN_MLAPI_EXCLUDE
|
|
#define BEGIN_MLAPI_EXCLUDE
|
|
#endif
|
|
#ifndef END_MLAPI_EXCLUDE
|
|
#define END_MLAPI_EXCLUDE
|
|
#endif
|