mirror of
https://github.com/Z3Prover/z3
synced 2025-04-16 05:48:44 +00:00
move definition of Z3_API to the right file
Signed-off-by: Nuno Lopes <a-nlopes@microsoft.com>
This commit is contained in:
parent
1e30fd2c65
commit
a106b4125a
|
@ -21,10 +21,6 @@ Notes:
|
|||
#ifndef _Z3__H_
|
||||
#define _Z3__H_
|
||||
|
||||
#ifdef __GNUC__
|
||||
# define Z3_API __attribute__ ((visibility ("default")))
|
||||
#endif
|
||||
|
||||
#include<stdio.h>
|
||||
#include"z3_macros.h"
|
||||
#include"z3_api.h"
|
||||
|
|
|
@ -35,7 +35,11 @@
|
|||
#endif
|
||||
|
||||
#ifndef Z3_API
|
||||
#define Z3_API
|
||||
# ifdef __GNUC__
|
||||
# define Z3_API __attribute__ ((visibility ("default")))
|
||||
# else
|
||||
# define Z3_API
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#ifndef DEFINE_TYPE
|
||||
|
|
Loading…
Reference in a new issue