mdbx: portability - fix __dll_hidden/__hidden typo.

Change-Id: Iccd225d8c77eafdccc7f021809c26843974153e4
This commit is contained in:
Leonid Yuriev 2019-07-13 19:57:32 +03:00
parent 3ac2af61aa
commit b3286bad16

View File

@ -240,9 +240,9 @@
#ifndef __dll_hidden
# if defined(__GNUC__) || __has_attribute(visibility)
# define __hidden __attribute__((visibility("hidden")))
# define __dll_hidden __attribute__((visibility("hidden")))
# else
# define __hidden
# define __dll_hidden
# endif
#endif /* __dll_hidden */