mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 08:13:38 -05:00
10 lines
212 B
C
10 lines
212 B
C
#ifndef PARAMS
|
|
# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
|
|
# define PARAMS(Args) Args
|
|
# else
|
|
# define PARAMS(Args) ()
|
|
# endif
|
|
#endif
|
|
|
|
ssize_t
|
|
safe_read PARAMS ((int desc, void *ptr, size_t len));
|