repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.dg
/
cpp
/
ucnid-2.c
blob
6719c783f561c1e42e87a2b95985fa0c7fba7051
1
/* { dg-do run } */
2
/* { dg-options "-std=c99 -fextended-identifiers" } */
3
#include <stdlib.h>
4
#include <string.h>
5
6
#define str(t) #t
7
8
int
main
(
void
)
9
{
10
const char
s
[] =
str
(
\u30b2
);
11
12
if
(
strcmp
(
s
,
"
\u30b2
"
) !=
0
)
13
abort
();
14
15
return
0
;
16
}