aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/struct-ret-libc.c
blob: 723e1cd029bc51cb8f5bad57409f04d7e3b9f5a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Test evolved from source from Simona Perri <perri@mat.unical.it>
   and Gerald Pfeifer<pfeifer@dbai.tuwien.ac.at>.

   Copyright (C) 2003 Free Software Foundation  */

/* { dg-do run } */

#include <stdlib.h>

int main ()
{
  div_t d = div (20, 5);
  if ((d.quot != 4) || (d.rem))
    abort ();
  exit (0);
}