File: proto.h

package info (click to toggle)
rsynth 2.0-5
  • links: PTS
  • area: non-free
  • in suites: potato
  • size: 716 kB
  • ctags: 544
  • sloc: ansic: 5,535; sh: 1,246; makefile: 116
file content (20 lines) | stat: -rw-r--r-- 366 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* $Id: proto.h,v 1.13 1994/11/08 13:30:50 a904209 Exp a904209 $
*/
#ifndef PROTO
#if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
#define PROTO(ARGS) ARGS
#ifndef NOPROTOFLOAT
#define Float float
#else
#define Float double
#endif
#else
#define PROTO(ARGS) ()
#define Float double
#endif

#ifndef __GNUC__
#define inline
#endif

#endif /* PROTO */