File: u_1_25.t

package info (click to toggle)
mcpp 2.6.2-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 6,660 kB
  • ctags: 28,783
  • sloc: ansic: 32,282; sh: 3,359; makefile: 148; cpp: 84; exp: 18
file content (18 lines) | stat: -rw-r--r-- 474 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* u_1_25.t:    Miscelaneous undefined macros.  */

#define str( a)     # a
#define sub( x, y)      (x - y)
#define SUB             sub

/* u.1.25:  Macro argument otherwise parsed as a directive. */
/*  "#define NAME"; or other undefined behaviour.   */
    str(
#define NAME
    );

#if 0   /* Added by C90: Corrigendum 1 (1994) and deleted by C99    */
/* u.1.26:  Expanded macro replacement list end with name of function-like
        macro.  */
    SUB( a, b);
#endif