projects
/
kopensolaris-gnu
/
glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
4f32a6a
)
(main): Use return instead of exit to avoid warning.
author
drepper
<drepper>
Mon, 4 Dec 2000 07:26:40 +0000
(07:26 +0000)
committer
drepper
<drepper>
Mon, 4 Dec 2000 07:26:40 +0000
(07:26 +0000)
math/test-fenv.c
patch
|
blob
|
history
diff --git
a/math/test-fenv.c
b/math/test-fenv.c
index
c369fc0
..
520a7a1
100644
(file)
--- a/
math/test-fenv.c
+++ b/
math/test-fenv.c
@@
-657,5
+657,5
@@
main (void)
exit (1);
}
printf ("\n All tests passed successfully.\n");
exit (1);
}
printf ("\n All tests passed successfully.\n");
-
exit (0)
;
+
return 0
;
}
}