git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8008 a95241bf-73f2-0310-859d-f6bbb57e9c96
10 lines
195 B
C
10 lines
195 B
C
#ifndef PARAMS
|
|
# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
|
|
# define PARAMS(Args) Args
|
|
# else
|
|
# define PARAMS(Args) ()
|
|
# endif
|
|
#endif
|
|
|
|
char *base_name PARAMS ((char const *name));
|