File: math_mpfr_unused.h

package info (click to toggle)
libmath-mpfr-perl 4.38-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,652 kB
  • sloc: perl: 1,363; ansic: 517; makefile: 9
file content (22 lines) | stat: -rwxr-xr-x 852 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

#ifndef MATH_MPFR_UNUSED_H
#define MATH_MPFR_UNUSED_H 1

#define PERL_UNUSED_ARG2(a,b) PERL_UNUSED_ARG(a);PERL_UNUSED_ARG(b);

#define PERL_UNUSED_ARG3(a,b,c) PERL_UNUSED_ARG(a);PERL_UNUSED_ARG(b);\
                                PERL_UNUSED_ARG(c);

#define PERL_UNUSED_ARG4(a,b,c,d) PERL_UNUSED_ARG(a);PERL_UNUSED_ARG(b);\
                                  PERL_UNUSED_ARG(c);PERL_UNUSED_ARG(d);

#define PERL_UNUSED_ARG5(a,b,c,d,e) PERL_UNUSED_ARG(a);PERL_UNUSED_ARG(b);\
                                    PERL_UNUSED_ARG(c);PERL_UNUSED_ARG(d);\
                                    PERL_UNUSED_ARG(e);

#define PERL_UNUSED_ARG6(a,b,c,d,e,f) PERL_UNUSED_ARG(a);PERL_UNUSED_ARG(b);\
                                      PERL_UNUSED_ARG(c);PERL_UNUSED_ARG(d);\
                                      PERL_UNUSED_ARG(e);PERL_UNUSED_ARG(f);

#endif