File: u_1_25.c

package info (click to toggle)
mcpp 2.7.1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 8,024 kB
  • ctags: 29,151
  • sloc: ansic: 35,191; sh: 9,231; makefile: 176; cpp: 84; exp: 18
file content (26 lines) | stat: -rw-r--r-- 574 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* u_1_25.c:    Undefined behaviors on undefined macro argument.    */

#include    <stdio.h>
#define str( a)     # a
#define sub( x, y)  (x - y)
#define SUB         sub

main( void)
{
    int     a = 1, b = 2;

/* u.1.25:  Macro argument otherwise parsed as a directive. */
/*  "#define NAME"; or other undefined behaviour.   */
    puts( 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

    return  0;
}