open-axiom repository from github
1/* released under the Modified BSD License */23#ifndef _USEPROTO_H_4#define _USEPROTO_H_ 156#if defined(SGIplatform)||defined(LINUXplatform)||defined(HPplatform) ||defined(RIOSplatform) ||defined(RIOS4platform) || defined(SUN4OS5platform)7#ifdef _NO_PROTO8#undef _NO_PROTO9#endif10#ifndef NeedFunctionPrototypes11#define NeedFunctionPrototypes 112#endif13#endif /*SGIplatform ... */141516#if defined(ALPHAplatform)17#ifdef __STDC__1819#ifdef _NO_PROTO20#undef _NO_PROTO21#endif22#ifndef NeedFunctionPrototypes23#define NeedFunctionPrototypes 124#endif2526#else2728#define _NO_PROTO29#undef NeedFunctionPrototypes3031#endif32#endif /* ALPHA */33343536#ifdef SUNplatform37#define _NO_PROTO38#define const39#endif4041#endif /* _USEPROTO_H_ */42434445