Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

open-axiom repository from github

24005 views
1
2
/* released under the Modified BSD License */
3
4
#ifndef _USEPROTO_H_
5
#define _USEPROTO_H_ 1
6
7
#if defined(SGIplatform)||defined(LINUXplatform)||defined(HPplatform) ||defined(RIOSplatform) ||defined(RIOS4platform) || defined(SUN4OS5platform)
8
#ifdef _NO_PROTO
9
#undef _NO_PROTO
10
#endif
11
#ifndef NeedFunctionPrototypes
12
#define NeedFunctionPrototypes 1
13
#endif
14
#endif /*SGIplatform ... */
15
16
17
#if defined(ALPHAplatform)
18
#ifdef __STDC__
19
20
#ifdef _NO_PROTO
21
#undef _NO_PROTO
22
#endif
23
#ifndef NeedFunctionPrototypes
24
#define NeedFunctionPrototypes 1
25
#endif
26
27
#else
28
29
#define _NO_PROTO
30
#undef NeedFunctionPrototypes
31
32
#endif
33
#endif /* ALPHA */
34
35
36
37
#ifdef SUNplatform
38
#define _NO_PROTO
39
#define const
40
#endif
41
42
#endif /* _USEPROTO_H_ */
43
44
45