mirror of
https://github.com/opnsense/src.git
synced 2026-03-02 05:13:58 -05:00
10 lines
207 B
C
10 lines
207 B
C
|
|
#ifndef PARAMS
|
||
|
|
# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
|
||
|
|
# define PARAMS(Args) Args
|
||
|
|
# else
|
||
|
|
# define PARAMS(Args) ()
|
||
|
|
# endif
|
||
|
|
#endif
|
||
|
|
|
||
|
|
FILE *fopen_safer PARAMS ((char const *, char const *));
|