3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-04-16 01:04:12 +00:00
z3/src/api/ml/z3native_stubs.h
Nikolaj Bjorner d0e20e44ff booyah
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2020-07-04 15:56:30 -07:00

35 lines
514 B
C

/*++
Copyright (c) 2015 Microsoft Corporation
Module Name:
z3native_stubs.h
Abstract:
DLL/SO/DYLIB export macros.
Author:
Christoph (cwinter) 2015-12-12
Notes:
--*/
#pragma once
#if defined _WIN32 || defined __CYGWIN__
#ifdef __GNUC__
#define DLL_PUBLIC __attribute__ ((dllexport))
#else
#define DLL_PUBLIC __declspec(dllexport)
#endif
#else
#if __GNUC__ >= 4
#define DLL_PUBLIC __attribute__ ((visibility ("default")))
#else
#define DLL_PUBLIC
#endif
#endif