aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/order.c
blob: 5e0ef438b657d4a4d154fea5d7966a3f03771d02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
#include "orderlib1.h"
#include "orderlib.h"

int
main()
{
  int rc = 0;
  rc += orderlib1(); /* 10 */
  rc += value();

  printf("rc = %d (expect 6010)\n", rc);

  return (rc != 6010);
}