aboutsummaryrefslogtreecommitdiffstats
path: root/include/fparam.h
diff options
context:
space:
mode:
authorFritz Elfert <felfert@to.com>1999-06-28 08:55:07 +0000
committerFritz Elfert <felfert@to.com>1999-06-28 08:55:07 +0000
commit3d3be141551bb4622da1cb610e4f6f798dd1715e (patch)
treee07160ba7df6fa0967c99692a4f457ccb459c3f1 /include/fparam.h
downloadplptools-3d3be141551bb4622da1cb610e4f6f798dd1715e.tar.gz
plptools-3d3be141551bb4622da1cb610e4f6f798dd1715e.tar.bz2
plptools-3d3be141551bb4622da1cb610e4f6f798dd1715e.zip
First import
Diffstat (limited to 'include/fparam.h')
-rw-r--r--include/fparam.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/include/fparam.h b/include/fparam.h
new file mode 100644
index 0000000..cb881c2
--- /dev/null
+++ b/include/fparam.h
@@ -0,0 +1,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