repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
testsuite: Skip analyzer tests on AIX.
[official-gcc.git]
/
gcc
/
testsuite
/
c-c++-common
/
analyzer
/
factorial.c
blob
384713a245a4f2b9f23d173dd4d561c65340f406
1
int
factorial
(
int
n
)
2
{
3
if
(
n
>
1
)
4
return
n
*
factorial
(
n
-
1
);
5
else
6
return
1
;
7
}