mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00

The libmagic library also uses the HAVE_VISIBILITY macro that should be defined to 1 if visibility is supported or 0 if not. Follow-up of GH-5526 (-Wundef)
18 lines
293 B
C
18 lines
293 B
C
#include "php.h"
|
|
#include "php_libmagic.h"
|
|
|
|
#ifndef HAVE_STDINT_H
|
|
#define HAVE_STDINT_H 1
|
|
#endif
|
|
|
|
#ifndef HAVE_STDINT_H
|
|
#define HAVE_STDINT_H 1
|
|
#endif
|
|
|
|
#ifndef HAVE_VISIBILITY
|
|
# ifdef HAVE_FUNC_ATTRIBUTE_VISIBILITY
|
|
# define HAVE_VISIBILITY 1
|
|
# else
|
|
# define HAVE_VISIBILITY 0
|
|
# endif
|
|
#endif
|