mirror of
https://github.com/DreamSourceLab/DSView.git
synced 2025-01-13 13:32:53 +08:00
778ed0360c
Because the sys-libs/zlib header pollutes the macro namespace, leading to build failures. Under the gentoo operating system, the macro definition of OF becomes _Z_OF in zconf.h, but the recently introduced minizip has introduced a large number of OF, leading to build fail. Therefore, the prototypes of OF are added so that they can be successfully built under various operating systems. Bug: https://bugs.gentoo.org/383179 Signed-off-by: Huang Rui <vowstar@gmail.com>
13 lines
176 B
C
13 lines
176 B
C
#ifndef _OF_H
|
|
#define _OF_H
|
|
|
|
#ifndef OF /* function prototypes */
|
|
# ifdef STDC
|
|
# define OF(args) args
|
|
# else
|
|
# define OF(args) ()
|
|
# endif
|
|
#endif
|
|
|
|
#endif /* _OF_H */
|