aboutsummaryrefslogtreecommitdiffstats
path: root/include/fparam.h
blob: cb881c2347756a3d9bfb02b1e7f31fd441352078 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* $Id$
 *
 */

#ifndef _fparam_h_
#define _fparam_h_

#if defined(sun) && defined(__STDC__) && !defined(__SVR4)
# include "sun_stdlib.h"
# define __P(a) a
#endif

#ifndef __P
#  if defined(__STDC__)
#    define __P(a) a
#  else
#    define __P(a) ()
#  endif
#endif

#endif