Last change
on this file since 2 was 2, checked in by bird, 22 years ago |
Initial revision
|
-
Property cvs2svn:cvs-rev
set to
1.1
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
|
File size:
312 bytes
|
Line | |
---|
1 | /* Test evolved from source from Simona Perri <perri@mat.unical.it>
|
---|
2 | and Gerald Pfeifer<pfeifer@dbai.tuwien.ac.at>.
|
---|
3 |
|
---|
4 | Copyright (C) 2003 Free Software Foundation */
|
---|
5 |
|
---|
6 | /* { dg-do run } */
|
---|
7 |
|
---|
8 | #include <stdlib.h>
|
---|
9 |
|
---|
10 | int main ()
|
---|
11 | {
|
---|
12 | div_t d = div (20, 5);
|
---|
13 | if ((d.quot != 4) || (d.rem))
|
---|
14 | abort ();
|
---|
15 | exit (0);
|
---|
16 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.